일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- hook
- Render Props
- notFound()
- Next13
- 고급안내서
- react hook
- context
- React API 참고서
- Babel
- Nextjs
- React 18 Nextjs
- react-helmet
- React 고급 안내서
- React18
- next13 head
- React 공식문서
- React 고급안내서
- getUTCDate
- background setttimeout
- CSS
- React 18
- react
- RTK Query
- background tab
- background: url
- Javascript
- codingtest
- Nextjs React 18
- Programmers
- background setInterval
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