- 난이도: Lv2
프로그래머스 링크: https://school.programmers.co.kr/learn/courses/30/lessons/12911
풀이 링크(GitHub): hayannn/CodingTest_Java/프로그래머스/2/다음 큰 숫자
풀이 시간 : 10분
class Solution {
public int solution(int n) {
int targetCount = Integer.bitCount(n);
while (Integer.bitCount(++n) != targetCount) {
}
return n;
}
}