Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- adb pair
- dvh
- github lfs
- Failed to compiled
- github 100mb
- ffi-napi
- electron-packager
- adb connect
- ELECTRON
- Can't resolve
- 티스토리 성능
- animation
- rolldown
- camera permission
- npm package
- custom printing
- Recoil
- nextjs
- github pdf
- device in use
- silent printing
- react-native-dotenv
- react-native
- Each child in a list should have a unique "key" prop.
- camera access
- vercel git lfs
- html
- augmentedDevice
- 이미지 데이터 타입
- Git
Archives
- Today
- Total
목록2022/04/19 (1)
Bleeding edge
[프로그래머스] - 124 나라의 숫자
https://programmers.co.kr/learn/courses/30/lessons/12899# 코딩테스트 연습 - 124 나라의 숫자 programmers.co.kr 2단계의 앞부분에 위치하고 있어서 여러번 시도하고 여러번 실패한 문제. 다른분의 풀이를 보니 다른분의 풀이를 보는게 더 나은거 같다. function solution(n) { let answer = [] n = n.toString('3'); n = n.split(''); while(n.length!==0){ if(n[n.length-1]!=='0'){ answer.push(n[n.length-1]) n.pop(); }else if(n[n.length-1]==='0'){ answer.push('4') n.pop(); for(let i..
코딩테스트 공부
2022. 4. 19. 13:19