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
- spring
- BindingResult
- 파이썬
- 런타임 상수
- DTO
- Git
- 프로그래머스
- 쿠키
- 편향된 지수
- compgen
- 백준
- 기본키 전략
- @Autowired
- mysql
- @SubscribeMapping
- 오블완
- JDBC
- 컴파일 타임 상수
- 쉘 스크립트
- 리눅스
- API
- m:n
- JPA
- allocationSize
- 알고리즘
- intelij spring config
- application layer
- 티스토리챌린지
- 커밋 되돌리기
- 메모리 구조
Archives
- Today
- Total
목록DFS BFS (1)
둘셋 개발!

✏️ 문제 링크: https://school.programmers.co.kr/learn/courses/30/lessons/1844 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr ✏️ 소스코드v1 (정확도 100%, 효율성 0%) - dfs from collections import deque INF=10001 dx=[-1,0,1,0] dy=[0,-1,0,1] def solution(maps): n = len(maps) m = len(maps[0]) def dfs(x,y,n,m,cnt): if x == n-1 and y == m-1: #print("도달",..
알고리즘
2022. 8. 14. 13:34