일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- getUTCDate
- Render Props
- Next13
- React 18
- codingtest
- next13 head
- React API 참고서
- hook
- context
- background setInterval
- Nextjs
- React18
- Javascript
- CSS
- Babel
- react-helmet
- React 고급 안내서
- Nextjs React 18
- notFound()
- background: url
- RTK Query
- Programmers
- react hook
- background setttimeout
- 고급안내서
- background tab
- React 고급안내서
- React 공식문서
- React 18 Nextjs
- react
Archives
- Today
- Total
akjfal
[Programmers] 점프와 순간 이동 본문
// 1 2 3 6
// if 짝수 -> / 2 / 2 / 2 홀수 -1 ->
public class Solution {
public int solution(int n) {
int ans = 0;
while(n > 0){
if(n % 2 == 1){
n -= 1;
ans++;
}else{
n /= 2;
}
}
return ans;
}
}
짧다. 근데 생각 잘해야한다.
'알고리즘 > programmers' 카테고리의 다른 글
[Programmers] 가장 큰 정사각형 찾기 (0) | 2021.06.22 |
---|---|
[Programmers] 방문 길이 (0) | 2021.06.22 |
[Programmers] [1차] 캐시 (0) | 2021.06.19 |
[Programmers] 이진 변환 반복하기 (0) | 2021.06.19 |
[Programmers] 피보나치 수 (0) | 2021.06.19 |
Comments