Skip to content

Commit 4f2df99

Browse files
committed
Python Algorithm
1 parent da02209 commit 4f2df99

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.idea/workspace.xml

+2-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

SWEA_Python/1227-bfs.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# 미로 2
22
from collections import deque
3+
dx, dy = [-1, 1, 0, 0], [0, 0, -1, 1]
34

45

56
def bfs(x, y):

0 commit comments

Comments
 (0)