Skip to content

Commit cb11f4b

Browse files
authored
Update 2.py
1 parent d229496 commit cb11f4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

19/2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def move_all_fishes(array, now_x, now_y):
5353
def get_possible_positions(array, now_x, now_y):
5454
positions = []
5555
direction = array[now_x][now_y][1]
56-
# 현재의 방향으로 쭉 이동하며
56+
# 현재의 방향으로 쭉 이동하기
5757
for i in range(4):
5858
now_x += dx[direction]
5959
now_y += dy[direction]

0 commit comments

Comments
 (0)