일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- background tab
- Nextjs React 18
- React18
- Next13
- Nextjs
- React API 참고서
- react
- react hook
- Programmers
- codingtest
- react-helmet
- background setInterval
- React 고급안내서
- React 공식문서
- background setttimeout
- Render Props
- context
- getUTCDate
- CSS
- Javascript
- hook
- next13 head
- notFound()
- Babel
- RTK Query
- React 18 Nextjs
- 고급안내서
- React 18
- background: url
- React 고급 안내서
- Today
- Total
목록전체 글 (167)
akjfal
// 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; } } 짧다. 근데 생각 잘해야한다.
// 0
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..
// 1
import java.util.Comparator; import java.util.Arrays; class Solution { public String solution(String s) { String answer = ""; String[] arr = s.split(" "); Arrays.sort(arr, new Comparator() { public int compare(String a, String b){ int a1, b1; if(a.charAt(0) == '-') a1 = -1 * Integer.parseInt(a.substring(1, a.length())); else a1 = Integer.parseInt(a.substring(0, a.length())); if(b.charAt(0) == '-..
// f(x) x보다 크고 x와 비트가 1~2개 다른 수들 중에서 제일 작은 수 // 1 > 연산을 통해 1의 갯수(x)를 구하고 2^(x-1)을 해주면된다. 단 0인경우는 답이 다르게나오니 처리해줘야한다.
// bfs로 풀기 // 지워진 블록 아래로 내리기 // 2 -1; k--){ if(!map[k][j].equals("n")){ map[i][j] = map[k][j]; map[k][j] = "n"; nonePoint = k - 1; break; } } } } } } boolean isOverMap(int y, int x){ for(int i = 0; i = m || x + checkX[i] >= n) return true; } return false; } } bfs를 이용한 단순 구현문제다.