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
- Object Detection
- Paper list
- 프로그래머스파이썬
- 프로그래머스너비우선탐색
- Pruning Tutorial
- deep learning
- 프로그래머스게임맵최단거리
- 타겟넘버bfs
- Code Study
- 프로그래머스bfs
- ssd
- pytorch
- Single Shot MultiBox Detector
- 프로그래머스네트워크
- 프로그래머스타겟넘버파이썬
- Pytorch pruning
- 커피후기
- Faster R-CNN
- 프로그래머스타겟넘버
- 코딩테스트2단계
- Two stage Detector
- ECCV
- 프로그래머스
- 프로그래머스타겟넘버정답
- 코딩테스트연습
- 다음큰숫자
- 코딩테스트네트워크
- SSD 리뷰
- One stage detector
- 최솟값 만들기
Archives
- Today
- Total
목록프로그래머스게임맵최단거리 (1)
soyeonland
프로그래머스 dfs/bfs 게임 맵 최단거리 파이썬
실수한것더보기maps 를 map 이라고 오타내서 문제 (map이라는 함수가 있기 때문에)cur_cnt 를 처음부터 고려하지 않은것? from collections import dequedef solution(maps): answer = 100000 row = len(maps) col = len(maps[0]) visited = [[False]*col for _ in range(row)] # print('visited',visited) dx=[-1,1,0,0] dy=[0,0,-1,1] q = deque() def bfs(): nonlocal answer start = [0,0,1] q.append(star..
Study/코딩테스트 연습
2024. 10. 13. 14:50