@yuwon
3번 카드를 뒤집어라(9.17)

9.10 파이썬 복습(1번 대칭수)
updated
Python
·

5번 재귀함수 인덱스rec /깊이탐색DFS(depth first search)
updated
Python
·

5번 재귀함수(9.8)
updated
Python
·

4번 막대 자르기

5번 아직도 현금으로 계산하다니! 9.1
updated
Python
·

cnt=0
for coin_500 in range(0,2+1): #500원 동전은 최대 2개
for coin_100 in range(0,10+1): #100원 동전은 최대 10개
for coin_50 in range(0,15+1): #50원 동전은 최대 15개
for coin_10 in range(0,15+1): #10원 동전은 최대 15개
if coin_500 + coin_100 + coin_50 + coin_10 <=15:
if coin_500*500 + coin_100*100 + coin_50*50 + coin_10*10==1000:
cnt+=1
print(cnt)
연습2-(8.4(2))
updated
Python
·

연습2-(8.4 복습)

연습2-수열의 사칙연산(7.28)-책ver.
updated
Python
·

연습2-수열의 사칙연산(7.28)
updated
Python
·

연습1-대칭수(7.21)
updated
Python
·
