Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 파이썬
- deep learning
- Object Detection
- reconstruction
- 3D
- Threshold
- 알고리즘
- re-identification
- Computer Vision
- numpy
- level2
- Deeplearning
- OpenCV
- Python
- transformer
- NLP
- 스택
- point cloud
- 논문 구현
- center loss
- flame
- 프로그래머스
- 딥러닝
- Object Tracking
- 자료구조
- Knowledge Distillation
- 큐
- 임계처리
- attention
- cv2
Archives
- Today
- Total
목록같은숫자는싫어 (1)
공돌이 공룡의 서재

def solution(arr): answer = [arr[0]] for i in range(1, len(arr)): if arr[i] == arr[i-1]: pass else: answer.append(arr[i]) return answer 코드 설명: 처음 숫자는 그 다음 숫자랑 중복이 되든 안되든 무조건 하나를 취하고, 그 다음부터는 배열의 원소를 2개씩 비교하면서 같으면 pass (continue를 써도 무방), 다르면 숫자가 달라지는 것이니 answer 배열에 넣었다.
코딩/프로그래머스
2020. 8. 16. 12:51