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

리액트? 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! 그리고 단어를 ..
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..