일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 고급안내서
- codingtest
- background: url
- notFound()
- react-helmet
- React 18
- Babel
- getUTCDate
- background setttimeout
- React 고급안내서
- Nextjs
- CSS
- context
- background setInterval
- React 고급 안내서
- React 18 Nextjs
- Programmers
- React 공식문서
- next13 head
- Javascript
- React18
- react hook
- Next13
- Render Props
- Nextjs React 18
- react
- React API 참고서
- hook
- RTK Query
- background tab
Archives
- Today
- Total
목록이진 변환 반복하기 (1)
akjfal
[Programmers] 이진 변환 반복하기
class Solution { int[] answer; public int[] solution(String s) { answer = new int[2]; String beforeS = s; while(true){ String changeS = changeBit(beforeS); answer[0]++; if(changeS.equals("1")){ break; }else{ beforeS = changeS; } } return answer; } public String changeBit(String s){ int c; String changeS = ""; String removeZero = s.replaceAll("0", ""); int zeroLength = removeZero.length(); answer..
알고리즘/programmers
2021. 6. 19. 13:35