We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3118ce commit 1a7d405Copy full SHA for 1a7d405
1 file changed
3/1.py
@@ -2,9 +2,9 @@
2
count = 0
3
4
# 큰 단위의 화폐부터 차례대로 확인하기
5
-list = [500, 100, 50, 10]
+coin_types = [500, 100, 50, 10]
6
7
-for coin in list:
+for coin in coin_types:
8
count += n // coin # 해당 화폐로 거슬러 줄 수 있는 동전의 개수 세기
9
n %= coin
10
0 commit comments