일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- adb pair
- ffi-napi
- camera permission
- github pdf
- 티스토리 성능
- npm package
- react-native-dotenv
- camera access
- 이미지 데이터 타입
- Can't resolve
- augmentedDevice
- Each child in a list should have a unique "key" prop.
- Git
- Recoil
- github 100mb
- vercel git lfs
- silent printing
- custom printing
- ELECTRON
- adb connect
- Failed to compiled
- nextjs
- dvh
- device in use
- electron-packager
- animation
- rolldown
- github lfs
- html
- react-native
- Today
- Total
목록전체 글 (343)
Bleeding edge

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..
https://leetcode.com/problems/min-max-game/ Min Max Game - 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. nums의 length가 1이 나올 때까지 계속 내용물을 줄여야했다. 2. 내용물을 줄이는 loop문은 두가지가 존재해야했다. 2-1 index 0부터 ..
내가 종종 쓸때마다 json을 업데이트를 하면 자주 쓰는 웹폰트나, 그림자와 깃 컨벤션 기능을 넣은 FFF를 만들었다. 처음에는 그냥 단순히 HTML을 만들다가 너무 HTML파일이 길어져서 컴포넌트화 시키기도 했고, 잘안쓰는 컬러를 날리기도 하였다. 아마 추가적으로 더 넣고 싶은 것이 있다면 종종 업데이트를 할꺼같다. 다음 프로젝트로 보고있는것은 electron으로 만드는 shortcut key viewer? 일꺼같다. 프로그램이나 맥북같은걸 최근에 이용하면서 느낀건, background fixed된 프로그램으로 내가 보고 싶은 단축키를 계속 볼 수 있게 하면 편할꺼 같다는 생각이 들어서이다. 내일 또 일렉트론으로 셋을 하다보면 시간이 후딱갈꺼같은 느낌이든다
https://leetcode.com/problems/multiply-strings/ Multiply Strings - 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 주어진 2개의 String을 곱하는 간단한 문제이다. 문제는 제한사항을 보면 매우큰 수를 곱하는경우가 있었는데, 지금까지 코딩테스트를 하다보면 항상 Max safe integer이 왜 있는지 그리고 자바스크립트가 왜 부동소수점인지 알 수 있는 문제였다. var multiply = function(n..