Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 우아한 테크러닝
- springsecurity
- 소수찾기 java
- RefreshToken
- Invalid property 'principal.username' of bean class
- 형상관리
- 알고리즘
- spring aop
- ObjectOptimisticLockingFailureException
- S3
- spring DI
- 백준
- TestContainers
- 멀티모듈 테스트컨테이너
- DI
- OptimisticLock
- aop
- @transactional
- jpa
- AccessToken
- redissonlock aop
- interface
- 낙관적 락 롤백
- 낙관적 락 재시도
- multimodule testcontainers
- java
- kotest testcontainers
- netty
- ObjectOptimisticLockingFailureException 처리
- Spring Cloud Gateway
Archives
- Today
- Total
조급하면 모래성이 될뿐
[프로그래머스] 다음 큰 숫자 본문
문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/12911
코드
class Solution {
public static int solution(int n) {
int nCnt = findOneCnt( n );
for ( int i = n+1 ; i < 10000001; i++ ) {
int nextCnt = findOneCnt(i);
if ( nCnt == nextCnt ) return i;
}
return 0 ;
}
private static int findOneCnt( int n ) {
int nCnt = 0 ;
String binaryN = Integer.toBinaryString(n);
for ( char c : binaryN.toCharArray() ) {
if( c == '1' ) {
nCnt++;
}
}
return nCnt;
}
public static int solution2(int n) {
int nCnt = Integer.bitCount(n);
for ( int i = n+1 ; i < 10000001; i++ ) {
int nextCnt = Integer.bitCount(i);
if ( nCnt == nextCnt ) return i;
}
return 0 ;
}
}
나의 풀이
처음에는 Intger.toBinaryString() 메서드를 사용해서 입력 n의 2진수를 구하고,
for문을 돌려서 1의 개수를 구하는 방식으로 해결하였다. ==> solution메서드
이 방법도 제출 결과 통과는 하였으나 다른 사람의 풀이를 보면서 Intger.bitCount() 메서드를 배울 수 있었다.
==> solution2 메서드
bitCount( int i ) 메서드는 입력받은 i값을 2진수로 바꾸고 1의 개수를 반환해주는 메서드이다!
언젠간 이 메서드를 활용할 날이 왔으면 좋겠다..
제출 결과
반응형
'Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스] 캐시 (0) | 2020.01.05 |
---|---|
[프로그래머스]숫자의 표현 (0) | 2020.01.04 |
[프로그래머스] 올바른 괄호 (0) | 2019.12.12 |
[프로그래머스] 가장 큰 정사각형 찾기 (0) | 2019.12.12 |
[프로그래머스] 라면공장 (0) | 2019.12.12 |