Skip to content

Commit 0766877

Browse files
authored
Update 1.py
1 parent 8cb6556 commit 0766877

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

4/1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# N 입력 받기
1+
# N 입력받기
22
n = int(input())
33
x, y = 1, 1
44
plans = input().split()
@@ -8,7 +8,7 @@
88
dy = [-1, 1, 0, 0]
99
move_types = ['L', 'R', 'U', 'D']
1010

11-
# 이동 계획을 하나씩 확인하기
11+
# 이동 계획을 하나씩 확인
1212
for plan in plans:
1313
# 이동 후 좌표 구하기
1414
for i in range(len(move_types)):

0 commit comments

Comments
 (0)