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 |
Tags
- Object Detection
- level2
- OpenCV
- Threshold
- transformer
- 큐
- 파이썬
- attention
- 자료구조
- Computer Vision
- 논문 구현
- cv2
- 알고리즘
- 3D
- reconstruction
- 임계처리
- point cloud
- 딥러닝
- Object Tracking
- Knowledge Distillation
- deep learning
- Python
- Deeplearning
- re-identification
- flame
- NLP
- 스택
- center loss
- numpy
- 프로그래머스
Archives
- Today
- Total
목록2019 카카오 개발자 겨울 인턴십 (1)
공돌이 공룡의 서재
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bjUe3o/btqHMuTllVK/AzR5a7ZKxhME8rYhsrdKI0/img.png)
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