#include <iostream> using namespace std; int solution(int n) { int ans = 0; while(n > 0) { if(n % 2 == 0) { n /= 2; } else { n -= 1; ans++; } } return ans; } | cs |
'Programmers > Level 2' 카테고리의 다른 글
[프로그래머스 2] 프렌즈 4블록 (C/C++) (★★) (0) | 2020.02.12 |
---|---|
[프로그래머스 2] 조이스틱 (C/C++) (★★★) (0) | 2020.01.10 |
[프로그래머스 2] 단체사진 찍기 (C/C++) (0) | 2020.01.06 |
[프로그래머스 2] H-Index (C/C++) (0) | 2020.01.06 |
[프로그래머스 2] 멀쩡한 사각형 (C/C++) (★) (0) | 2020.01.06 |