| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- vercel git lfs
- adb pair
- Each child in a list should have a unique "key" prop.
- Can't resolve
- Recoil
- Failed to compiled
- camera permission
- dvh
- electron-packager
- ELECTRON
- rolldown
- animation
- npm package
- adb connect
- Git
- device in use
- 티스토리 성능
- html
- camera access
- github 100mb
- silent printing
- github lfs
- ffi-napi
- augmentedDevice
- custom printing
- react-native-dotenv
- 이미지 데이터 타입
- react-native
- github pdf
- nextjs
- Today
- Total
목록2022/06/21 (4)
Bleeding edge
흐 지금까지 구현한 것은 1. 맨 앞에 Float 시키기 2. 저장된 txt파일 읽기 3. txt 자동 저장하기 4. input type range 를 이용하여 화면의 밝기 조절하기 이렇게 4가지 기능을 구현했다. 지금부터 구현하고 싶은 기능은... 1. 프로그램을 켰을 때, 임시 저장소에 저장된 파일을 자동으로 켜지게하기 2. 새창 띄우기 (새로운 메모장) 3. (할지안할지 안정함) 색 바꾸기 4. 파일이 아닌 링크 켜기. 4 번같은경우 다른 곳에서 만든게 있기 때문에 굳이 안만들 수도 있다. 우선 1,2를 storage를 이용하여 구현할 계획이다!
https://leetcode.com/problems/destroying-asteroids/ Destroying Asteroids - 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 개인적으로는 easy로 문제 난이도가 아닌가 싶다. 아까 풀었던 easy문제가 더 어려웠던거 같다. 이 문제는, 주어진 asteroids를 순서대로 배치하고 mass에 부딫히는데, mass가 asteroids에 충돌할 때마다 asteroids만큼 mass가 커진다. 이때 mass가 막..
https://leetcode.com/problems/kth-distinct-string-in-an-array/submissions/ Kth Distinct String in an 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 이 문제풀이를 할 때 목표는, 가독성을 높이기 위해 function으로 많이 쪼개려고 노력했다! 1. 주어진 arr에 대하여, 각 arr들의 성분들이 가지고 있는 갯수를 세기 위하여 new map을 만들고, count를 시키..
https://leetcode.com/problems/day-of-the-year/submissions/ Day of the Year - 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. 문제를 먼저 풀기 위해서 주어진 date를 split 해야 했다. const dateInfo = date.split("-") 2. 윤년인지 계산을 ..