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
- 논문 구현
- 3D
- reconstruction
- deep learning
- 파이썬
- numpy
- re-identification
- 프로그래머스
- 딥러닝
- flame
- OpenCV
- 알고리즘
- Object Tracking
- NLP
- Computer Vision
- cv2
- Threshold
- center loss
- 스택
- attention
- Deeplearning
- 임계처리
- 큐
- Python
- level2
- 자료구조
- point cloud
- transformer
- Object Detection
- Knowledge Distillation
Archives
- Today
- Total
목록2019 카카오 개발자 겨울 인턴십 (1)
공돌이 공룡의 서재
[프로그래머스 Level 1] 크레인 인형뽑기 / 2019 카카오 개발자 겨울 인턴십 / 파이썬
https://programmers.co.kr/learn/courses/30/lessons/64061 코딩테스트 연습 - 크레인 인형뽑기 게임 [[0,0,0,0,0],[0,0,1,0,3],[0,2,5,0,1],[4,2,4,4,2],[3,5,1,3,1]] [1,5,3,5,1,2,1,4] 4 programmers.co.kr 문제가 상당히 길어서 링크로 대체. def solution(board, moves): ##1 answer = 0 line = {} box = [] ## 2 for i in range(len(board)): line[i+1] = [] for i in board[::-1]: for j in range(len(i)): if i[j] != 0: line[j+1].append(i[j]) # pri..
코딩/프로그래머스
2020. 9. 2. 16:46