You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
lavos/python/cap5/work5.py

7 lines
203 B

# 翻币问题:有N个硬币(N≥10),正面向上排成一排。每次必须翻5个硬币,直到全部反面向上。
def flip_coins(num: int):
pass
result = flip_coins(21)
print(result)