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 | 31 |
Tags
- numpy
- 스택
- re-identification
- Object Tracking
- level2
- Threshold
- NLP
- 자료구조
- 3D
- 프로그래머스
- Knowledge Distillation
- transformer
- center loss
- flame
- 논문 구현
- 파이썬
- 큐
- OpenCV
- 딥러닝
- point cloud
- reconstruction
- cv2
- Computer Vision
- Deeplearning
- Object Detection
- attention
- 임계처리
- 알고리즘
- Python
- deep learning
Archives
- Today
- Total
목록탐욕법 (1)
공돌이 공룡의 서재
[프로그래머스 Level 1] 체육복 / 탐욕법 / 파이썬
def solution(n, lost, reserve): give = reserve.copy() for i in range(len(reserve)): if reserve[i] in lost: lost.remove(reserve[i]) give.remove(reserve[i]) check = lost.copy() reserve = give for i in range(len(reserve)): if reserve[i] - 1 in check: if len(check) != 0: check.remove(reserve[i]-1) elif reserve[i] + 1 in check: if len(check) != 0: check.remove(reserve[i]+1) else: pass return n - len(..
코딩/프로그래머스
2020. 7. 9. 01:33