백준 / 미로 탐색 / 2178번 / Python
·
코딩테스트(프로그래머스 & 백준)/백준-Python
*문제 출처는 백준에 있습니다. 문제 제목: 미로 탐색 / 2178번 (실버 1단계)문제 사이트: https://www.acmicpc.net/problem/2178 문제 설명 나의 풀이 def dfs(graph, visited, count, start, target): n, m = start a, b = target visited[n][m] = True if n == (a - 1) and m == (b - 1): return count directions = [(1, 0), (-1, 0), (0, 1), (0, -1)] for dn, dm in directions: new_n, new_m = n + dn, m + dm if ..