We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d229496 commit cb11f4bCopy full SHA for cb11f4b
19/2.py
@@ -53,7 +53,7 @@ def move_all_fishes(array, now_x, now_y):
53
def get_possible_positions(array, now_x, now_y):
54
positions = []
55
direction = array[now_x][now_y][1]
56
- # 현재의 방향으로 쭉 이동하며
+ # 현재의 방향으로 쭉 이동하기
57
for i in range(4):
58
now_x += dx[direction]
59
now_y += dy[direction]
0 commit comments