#include <iostream>
using namespace std;
int solution(int n)
{
int ans = 0;
int tmp = 0;
while(true){
if(n == 1){
ans++;
break;
}
if(n%2 == 0){
n = n/2;
}
else{
ans++;
n = n/2 ;
}
}
return ans;
}
'자윤이와고리즘 > Code' 카테고리의 다른 글
[프로그래머스] 방문길이 (0) | 2019.10.04 |
---|---|
[프로그래머스] 예상 대진표 (0) | 2019.08.13 |
[프로그래머스] 소수 만들기 (0) | 2019.08.08 |
[프로그래머스] 숫자의 표현 (0) | 2019.07.30 |
[프로그래머스] 영어 끝말 잇기 (0) | 2019.07.24 |