| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 이미지 데이터 타입
- dvh
- react-native
- electron-packager
- custom printing
- github 100mb
- device in use
- github lfs
- rolldown
- adb connect
- animation
- ELECTRON
- 티스토리 성능
- Recoil
- camera access
- silent printing
- vercel git lfs
- Can't resolve
- Each child in a list should have a unique "key" prop.
- ffi-napi
- nextjs
- github pdf
- Git
- react-native-dotenv
- adb pair
- npm package
- augmentedDevice
- Failed to compiled
- html
- camera permission
- Today
- Total
목록2022/06/24 (3)
Bleeding edge
https://leetcode.com/problems/minimum-time-to-make-rope-colorful/ Minimum Time to Make Rope Colorful - 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 요즘 map, reduce, filter를 자주쓰다보니 block scope에 대한 공부가 잘되는 것 같다. 1. 이 문제는 글자에서 다음글자가 같은지 다른지를 체크해야하고, 겹치는 글자가 2개이상인지 확인해야한다 따라서, 글자가 들어..
https://leetcode.com/problems/find-the-k-beauty-of-a-number/ Find the K-Beauty of a Number - 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 주어진 k의 길이만큼 nums를 자르고, 자르고 나온 숫자가 x라고 했을때 x가 num로 나누었을 때 0인 경우의 수를 세는 문제이다. 아마 풀이를 보는게 더 이해가 빠를것 같다. 1. 0인 ansewr와 array인 return을 선언한다. 그리고 n..
https://leetcode.com/problems/height-checker/ Height Checker - 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 문제풀이는 총 3번했다. 1. sort를 두번 써서 2. 1번에서 푼문제를 살짝 수정 3. 2번에서 효율성 개선 1. sort를 두번 썼을 때는 index가 같은 숫자가 많은경우, 오답이 처리되서 좀 더 단순하게 풀기 위해 다시 풀었다. 2번풀이 1. 원래의 본문과 차이가 있으면, count를 해줄 ans..