-
콜라츠 추측프로그래머스알고리즘 2020. 10. 1. 00:50
#include <string> #include <vector> using namespace std; int solution(int num) { long long n = num; int answer = 0; while (n != 1) { if (answer >= 500) { return -1; } if (n % 2 == 0) { n = n/2; } else{ n = (n * 3) + 1; } answer++; } return answer; }
'프로그래머스알고리즘' 카테고리의 다른 글
위장 (0) 2020.10.01 완주하지 못한 선수 hash map 사용 (0) 2020.10.01 완주하지 못한 선수 (0) 2020.10.01 수박문제 (0) 2020.10.01 문자열문제 (0) 2020.09.30