Skip to content

Commit 6f59107

Browse files
committed
[#5] Fix: Update 바구니 뒤집기
마지막 결과값 출력을 잘못 저장하고 커밋하여 맞게 수정 후 재 커밋
1 parent c47082c commit 6f59107

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

10811.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@
1515
for changeValue in baskets[start:stop:-1]:
1616
baskets[changeIndex] = changeValue
1717
changeIndex += 1
18-
print(baskets)
18+
19+
print(' '.join(baskets))

0 commit comments

Comments
 (0)