일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 connect
- animation
- react-native
- dvh
- custom printing
- adb pair
- Each child in a list should have a unique "key" prop.
- device in use
- 티스토리 성능
- github pdf
- Can't resolve
- 이미지 데이터 타입
- vercel git lfs
- electron-packager
- ffi-napi
- camera permission
- npm package
- github lfs
- Failed to compiled
- github 100mb
- ELECTRON
- silent printing
- Git
- augmentedDevice
- camera access
- Recoil
- rolldown
- react-native-dotenv
- nextjs
- html
- Today
- Total
목록전체 글 (337)
Bleeding edge
https://leetcode.com/problems/average-waiting-time/ Average Waiting Time - 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. 현재 시간을 선언한다. 이때 손님이 온 시간을 모르니 0으로 선언한다. 2. 전체 시간을 선언한다. 시간이 소요될 때..
https://leetcode.com/problems/reverse-prefix-of-word/submissions/ Reverse Prefix of Word - 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. 주어진 word에 ch가 없으면 return ch if (!word.includes(ch)) return word 2. word안 에서의 ch의 index를 구한다 const chIndex = word.indexOf(ch) 3. 0부터 chInd..
https://leetcode.com/problems/replace-elements-with-greatest-element-on-right-side/ Replace Elements with Greatest Element on Right Side - 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 주어진 arr에서, 본인의 오른쪽에 위치한 숫자중 가장 큰 숫자를 push하는 문제이다. arr의 길이가 n개라면 return한 값의 arr도 n개가 나와야한다. 주의할 ..
Vue.js 맛보기 간단한 템플릿 구문을 사용하여 DOM에서 데이터를 선언적으로 렌더링 할 수 있다. {{message}} //message output 이 위에 마우스를 올리면 동적으로 바인딩 된 title을 볼 수 있습니다 {{count.text}} 메시지 뒤집기 Show 가 flase이고, showifelse가 ture인 경우 show false, showifelse flase {{message}} v-bind 속성은 디렉티브라고 입니다. v- 접두어가 붙은것은 DOM에 특수한 반응형 동작을 합니다. v-if는 해당 selector가 표시 될 지 말지 여부를 정할 수 있습니다.(v-if-else, v-else와 같이 사용 가능하다) v-for는 countdown에 있는 component만큼 반복합니..
https://leetcode.com/problems/sort-colors/ Sort Colors - 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 sort를 활용해서 푸는 문제이다. 오늘 풀었던 easy문제보다 쉬운문제이다. easy로 난이도 조정이 되야하지 않을까..생각이 든다. var sortColors = function(nums) { return nums.sort((a,b)=>a-b) };
https://leetcode.com/problems/add-binary/ Add Binary - 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진수로 만드는 방법을 알아야 한다. 일반적으로 문제를 풀이 할 때는 let b = parseInt(a, '2') let c = b.toString('2') parseInt로 2진수의 숫자를 10진수로 바꾸고, toString으로 10진수를 2진수로 바꾸는 방법을 활용한다. 하지만 이 문제..
https://leetcode.com/problems/single-number/ Single 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 주어진 숫자가 1번 주어진 싱글 넘버를 리턴해라인 문제였다. 이 문제는 다양한 문자가 주어진다고 생각하고, 삭제를 쉽게할 수 있게 map을 사용하였다. 1. map을 만든다 const evenCheck = new Map() 2. 주어진 num를 이용하여 for문을 만든다. for (let i = 0; i < ..
리액트? CBD(Component Based Development) 요즘 웹이 다른 프로그램처럼 기능이 많아지면서, 구현해야하는 기능이 많아졌다. 이로 인해서 Javascript가 복잡해지면서 하나의 script.js에 모든 코드를 넣기가 어려워졌다. 이로 인해서 어떤 script 코드가 어떤 element를 제어하는지 파악하기 힘들어지고, 가독성이 떨어졌으며, 변수 선언 시 겹치지 않도록 신경을 써줘야하는 불편함이 생겼다. 해결책 : 여러개의 css와 js 파일로 분리를 하였다. 1) 어떤 element 2)그 element를 꾸미기 위한 style 3) 그 element 동작에 대한 script 1), 2), 3)을 묶음을 Component라고 한다. 리액트의 특징? 프론트엔드에서 하는 제어의 대부분..
https://leetcode.com/problems/longest-substring-without-repeating-characters/ Longest Substring Without Repeating Characters - 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으로 글자가 겹치지 않게 str을 붙여라!이다. 예시문자를 "abcabcbb"라고 하면 "abc" -> "abc" + "b"를 한다고하면 b가 이미 있기때문에 x! 그리고 단어를 ..