일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- React 고급안내서
- Programmers
- background setttimeout
- react hook
- React API 참고서
- RTK Query
- background setInterval
- CSS
- hook
- Next13
- react-helmet
- Nextjs
- React18
- getUTCDate
- Babel
- Javascript
- 고급안내서
- next13 head
- Nextjs React 18
- React 공식문서
- codingtest
- notFound()
- React 18 Nextjs
- Render Props
- background tab
- react
- React 18
- React 고급 안내서
- context
- background: url
Archives
- Today
- Total
목록비밀 지도 (1)
akjfal
[Programmers]비밀지도
function solution(n, arr1, arr2) { var answer = new Array(n).fill(""); // answer = arr1.map((value, idx) => ) arr1 = arr1.map((num, idx) => { let binary = num.toString(2); return "0".repeat(n-binary.length) + binary; }) arr2 = arr2.map((num, idx) => { let binary = num.toString(2); return "0".repeat(n-binary.length) + binary; }) for(let i = 0; i < n; i++){ for(let j = 0; j < n; j++){ if(arr1[i].c..
알고리즘/programmers
2021. 7. 4. 11:11