We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21e1470 commit 09a4503Copy full SHA for 09a4503
4/3.py
@@ -12,6 +12,7 @@
12
# 8가지 방향에 대하여 각 위치로 이동이 가능한지 확인
13
result = 0
14
for step in steps:
15
+ # 이동하고자 하는 위치 확인
16
next_row = row + step[0]
17
next_column = column + step[1]
18
# 해당 위치로 이동이 가능하다면 카운트 증가
0 commit comments