Notice
Recent Posts
Recent Comments
Link
S E P H ' S
[Python] 콜라츠 추측 본문
def solution(num):
answer = 0
# num 이 처음부터 1인 경우
if num == 1:
return 0
while True:
num = num / 2 if num % 2 == 0 else num * 3 + 1
answer += 1
if num == 1:
return answer
if answer == 500:
return -1
return answer
'Algorithm > Programmers' 카테고리의 다른 글
[Python] 시저 암호 (0) | 2021.06.25 |
---|---|
[Python] 최대공약수와 최소공배수 (0) | 2021.06.25 |
[Python] 하샤드 수 (0) | 2021.06.25 |
[Python] 핸드폰 번호 가리기 (0) | 2021.06.24 |
[Python] 행렬의 덧셈 (0) | 2021.06.24 |