| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- ELECTRON
- device in use
- Failed to compiled
- nextjs
- vercel git lfs
- html
- Each child in a list should have a unique "key" prop.
- silent printing
- react-native
- adb connect
- 이미지 데이터 타입
- camera permission
- ffi-napi
- electron-packager
- adb pair
- camera access
- 티스토리 성능
- npm package
- augmentedDevice
- github 100mb
- Recoil
- Git
- github lfs
- react-native-dotenv
- animation
- rolldown
- github pdf
- custom printing
- Can't resolve
- dvh
- Today
- Total
목록2022/06/13 (3)
Bleeding edge
https://leetcode.com/problems/word-search/ Word Search - 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 이 문제는, dfs bfs 두문제 풀이가 가능하다. 하지만 여기서는 dfs로 문제를 풀이를 하기로 한다! 1. 이 문제는 중복으로 재방문을 하면 안되므로 visited라는 정렬을 만들어서 재방문을 체크하는 것이 중요하다. 문제가 살짝 길어질꺼같으니, function으로 분리하자. 여기서 h,와 w는 board의 le..
https://leetcode.com/problems/shuffle-string/ Shuffle String - 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 문제에 str한개와 array 하나가 주어진다. array에 주어진 순서대로 str에 있는 글자를 옮기면된다. 문제 풀이 1. 문자를 한글자 떼고, array의 글자와 붙여서 새로운 정렬에 대입한다 const calc = [] for (let i = 0; i < s.length; i++) { calc.pu..
https://leetcode.com/problems/add-two-integers/submissions/ Add Two Integers - 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 음.. 랜덤으로 픽해서 문제를 풀이를 하는데 너무.. 이지한 문제가 나왔다.. var sum = function (num1, num2) { return num1 + num2 }; 문제에 주어진 두 변수를 더해서 리턴한다