diff --git "a/lkhyun/202512/11 PGM Lv2 \353\213\244\354\235\214 \355\201\260 \354\210\253\354\236\220.md" "b/lkhyun/202512/11 PGM Lv2 \353\213\244\354\235\214 \355\201\260 \354\210\253\354\236\220.md" new file mode 100644 index 00000000..9ac55b2e --- /dev/null +++ "b/lkhyun/202512/11 PGM Lv2 \353\213\244\354\235\214 \355\201\260 \354\210\253\354\236\220.md" @@ -0,0 +1,12 @@ +```java +class Solution { + public int solution(int n) { + int cur = Integer.bitCount(n); + + while(true){ + n++; + if(Integer.bitCount(n) == cur) return n; + } + } +} +```