| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- react-native-dotenv
- 티스토리 성능
- ffi-napi
- rolldown
- ELECTRON
- camera permission
- device in use
- Failed to compiled
- custom printing
- adb connect
- dvh
- 이미지 데이터 타입
- github lfs
- npm package
- react-native
- augmentedDevice
- Git
- silent printing
- electron-packager
- github pdf
- html
- vercel git lfs
- adb pair
- Each child in a list should have a unique "key" prop.
- camera access
- github 100mb
- Can't resolve
- Recoil
- animation
- nextjs
- Today
- Total
목록2022/06/07 (3)
Bleeding edge
https://leetcode.com/problems/find-first-and-last-position-of-element-in-sorted-array/ Find First and Last Position of Element in Sorted Array - 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 문제에는 [nums, target] 두가지의 변수가 주어진다. nums라는 정렬 안에 target이 들어있다고 하면, nums에서의 시작위치와 끝 위치를 ret..
https://leetcode.com/problems/implement-strstr/ Implement strStr() - 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 문제에 주어지는 변수는 haystack과 needle이다.haystack안에 needle이 포함되어 있다면, needle의 indexOf를 찾으라는 문제이다. 이때, needle이 주어지지 않았다면 0이나오게하고, 포함되지 않아있다면 -1을 내보내야한다. 이 문제는 문제풀이를 세우는 건 간단하지..