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