| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- augmentedDevice
- github 100mb
- Recoil
- github pdf
- react-native-dotenv
- custom printing
- Git
- camera access
- silent printing
- camera permission
- npm package
- ELECTRON
- electron-packager
- adb pair
- rolldown
- dvh
- 이미지 데이터 타입
- Failed to compiled
- html
- vercel git lfs
- react-native
- 티스토리 성능
- device in use
- animation
- nextjs
- Can't resolve
- ffi-napi
- adb connect
- Each child in a list should have a unique "key" prop.
- github lfs
- Today
- Total
목록2022/06/17 (3)
Bleeding edge
https://leetcode.com/problems/average-waiting-time/ Average Waiting Time - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 음식점에서 평균적으로 얼마나 손님들이 시간을 소요하는지 문제를 구하는 문제이다. 문제에는, 손님들이 온 시간과 먹은 시간이 기록된 리스트가 주어져 있다. 문제풀이 1. 현재 시간을 선언한다. 이때 손님이 온 시간을 모르니 0으로 선언한다. 2. 전체 시간을 선언한다. 시간이 소요될 때..
https://leetcode.com/problems/reverse-prefix-of-word/submissions/ Reverse Prefix of Word - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 풀이 1. 주어진 word에 ch가 없으면 return ch if (!word.includes(ch)) return word 2. word안 에서의 ch의 index를 구한다 const chIndex = word.indexOf(ch) 3. 0부터 chInd..
https://leetcode.com/problems/replace-elements-with-greatest-element-on-right-side/ Replace Elements with Greatest Element on Right Side - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 주어진 arr에서, 본인의 오른쪽에 위치한 숫자중 가장 큰 숫자를 push하는 문제이다. arr의 길이가 n개라면 return한 값의 arr도 n개가 나와야한다. 주의할 ..