일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Failed to compiled
- custom printing
- camera permission
- Git
- animation
- html
- adb pair
- 이미지 데이터 타입
- silent printing
- Recoil
- 티스토리 성능
- github lfs
- dvh
- npm package
- nextjs
- vercel git lfs
- github 100mb
- augmentedDevice
- electron-packager
- react-native
- ffi-napi
- device in use
- react-native-dotenv
- Each child in a list should have a unique "key" prop.
- ELECTRON
- github pdf
- adb connect
- rolldown
- Can't resolve
- camera access
- Today
- Total
목록전체 글 (337)
Bleeding edge
https://leetcode.com/problems/maximum-69-number/ Maximum 69 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 문제가 대소를 나타내는게 아닌 string에 대한 우선순위를 가지고 푸는 문제나, 무조건 한개는 바꿔야한다라고 하면 좋았을텐데... 지금 문제는 주어진숫자 6과 9를 서로 교환을 하는데 그중 한개를 바꿔서 가장 큰 숫자를 바꾸면된다. 즉, 첫번째로 만나는 6을 9로 바꾸고, 바꿀 것이 없다면 원..
https://leetcode.com/problems/counting-words-with-a-given-prefix/ Counting Words With a Given Prefix - 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 문제를 너무 어렵게 읽어서 어렵게 시도하다 틀리고 다시풀었습니다 ..-_ㅠ 문제는 아주 간단합니다 words가 prefix를 포함하고 있다면 한개씩 숫자를 더하여 return 하는 문제입니다. 1. count = 0 을 선언하고 wor..
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 }; 문제에 주어진 두 변수를 더해서 리턴한다
쨔잔! electron으로 shortcut key marker을 만들기 프로젝트를 오늘부터 시작하였다! 우선 electron의 기본 앱설치를 하기 위해서 git clone https://github.com/electron/electron-quick-start 를 설치하였다! SKM의 목표 이자 계획 1. 배경을 투명색으로 2. 화면을 맨위로 fixed 3. TODO list 처럼 단축키 입력하기 4. 그 키를 누르면 단축키부분이 focus처럼 반짝이기 + 고민 5. background에 유튜브재생(?)
필요성이 생긴 이유 오늘 자바스크립트 문제풀이를 하면서 다시금 Big O 의 중요성에대해서 느꼈다. 우선 오늘 문제풀이를 할 때 처음에는 Array를 통해서 접근하다가. Map으로 접근을 하였다. 우선 왜 Map을 사용하였는가? 라고 하기에 앞서 Array와 Object의 worst Big O를 비교하겠다 우선 Array Worst Big O 접근 O(1) index 0에 삽입 O(n) index 마지막에 삽입 O(1) 검색 O(n) 삭제 O(n) Object Worst Big O 삽입 O(1) 제거 O(1) 탐색(value를 이용한) O(n) 접근(key를 이용한) O(1) 여기서 보면 value를 이용하여 탐색을 하면 시간이 O(n)만큼 걸리는 걸 볼 수 있다. 따라서, value로 접근하는 것을 줄..
https://leetcode.com/problems/replace-elements-in-an-array/ Replace Elements 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 문제 자체는 상당히 심플하다. nums에 있는 숫자를 operations에 주어진 arr에 따라 값을 바꾸도록한다 nums[0] 이 5라고 할 때, operation[n]이 [5, 4]라고 하면 nums[0]은 4로 바꾸는 문제이다. 이문제를 3번정도 풀이..
https://leetcode.com/problems/rearrange-characters-to-make-target-string/ Rearrange Characters to Make Target 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 문제를 잘못이해해서 문제를 두번 풀었다.. 1. target에 주어진 알파벳 숫자를 카운트한다 2. s에 주어진 알파벳 숫자를 카운트한다. const maperMake = (target) => { let m..