Hackerrank 레벨업하기
문제
Cut the sticks
def cutTheSticks(arr):
result = []
while True:
result.append(len(arr))
tmp = list(map(lambda x: x - min(arr), arr))
arr = []
for i in tmp:
if i > 0:
arr.append(i)
if arr ==[]:
break
return result
궁금하신게 있다면 메일 주세요.
k2h7913@daum.net
cafehero123@gmail.com