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