def solution(num):
answer = 0
while True:
if num == 1:
break
if num%2 == 0:
num = num / 2
answer += 1
else:
num = num * 3 + 1
answer += 1
if answer >= 500:
return -1
return answer
'Coding Test > Programmers_Python' 카테고리의 다른 글
[프로그래머스/python] 최댓값과 최솟값 (0) | 2020.08.04 |
---|---|
[프로그래머스/python] 크레인 인형뽑기 게임 (2019 카카오 개발자 겨울 인턴십) (0) | 2020.08.03 |
[프로그래머스/python] 제일 작은 수 제거하기 (0) | 2020.07.29 |
[프로그래머스/python] 이상한 문자 만들기 (0) | 2020.07.29 |
[프로그래머스/python] 문자열 내림차순으로 배치하기 (0) | 2020.07.28 |