| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- adb pair
- ffi-napi
- Failed to compiled
- react-native
- github pdf
- custom printing
- camera access
- nextjs
- camera permission
- Git
- 티스토리 성능
- vercel git lfs
- augmentedDevice
- Can't resolve
- ELECTRON
- electron-packager
- Recoil
- Each child in a list should have a unique "key" prop.
- dvh
- html
- rolldown
- github lfs
- animation
- device in use
- react-native-dotenv
- github 100mb
- adb connect
- silent printing
- 이미지 데이터 타입
- npm package
- Today
- Total
목록2022/06/23 (3)
Bleeding edge
https://leetcode.com/problems/apply-discount-to-prices/ Apply Discount to Prices - 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.주어진 sentence를 " "로 분리합니다. 잘보면 $12a 이런 문자는 나눌 수 없는 것을 볼 수 있습니다. 즉 $숫자 단위로 ..
https://leetcode.com/problems/day-of-the-week/ Day of the Week - 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 자바스크립트의 new Date를 이용하여, 요일을 얻고 문제에 주어진 array를 이용하여 요일을 return 하는 문제이다. 단지 문제를 1회차 풀이에서 틀렸었는데 주의를 해야하는 것이 new Date함수이다. new Date함수의 모양을 잘봐보자! new Date(year, month index, ..
https://leetcode.com/problems/counting-bits/ Counting Bits - 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 0~n까지를2진법으로 바꾸고, 1만카운트하고 push하는 문제이다. 만일 문제의 효율성을 올리고 싶다면, 지금 아래와같이 for문으로 0~n을 넣고 변환할게 아니라, while문을 활용하고 while문은 return 할 리스트의 n+1만큼 길이가 될 때까지, 리스트의 내용은 2진법에서 나올 수 있는 1의 경우..