일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 pair
- silent printing
- rolldown
- nextjs
- vercel git lfs
- 티스토리 성능
- animation
- react-native
- html
- adb connect
- Each child in a list should have a unique "key" prop.
- electron-packager
- ELECTRON
- github lfs
- 이미지 데이터 타입
- ffi-napi
- camera access
- Recoil
- github 100mb
- dvh
- augmentedDevice
- device in use
- npm package
- custom printing
- camera permission
- github pdf
- Failed to compiled
- Git
- Can't resolve
- react-native-dotenv
- Today
- Total
목록전체 글 (337)
Bleeding edge
1. 어원 Mutex : Mutal eXclusion 상호 배제 Semaphore = Sema(sign) + phros(bearer) 신호 운반자 2. 둘을 사용하는 이유 공유메모리를 통해 공유된 자원에 여러 개의 프로세스가 동시에 접근하면 Critical Section 문제를 막기 위해 사용한다. 뮤텍스 : 동시 프로그래밍에서 공유 불가능한 자원의 동시 사용을 피하기 위해 사용하는 알고리즘 세마포어 : 멀티 프로그래밍 환경에서 공유된 자원에 대한 접근을 제한하는 방법 둘의 차이점 세마포어는 뮤텍스가 될수 있지만, 뮤텍스는 세마포어가 될 수 없습니다. 뮤텍스는 항상 열쇠 1개이고, 세마포어는 여러개 가질 수 있기 때문에 세마포어의 열쇠가 1개라면 뮤텍스와 같습니다. 세마포어는 파일시스템 상 파일형태로 존..
https://leetcode.com/problems/find-all-lonely-numbers-in-the-array/ Find All Lonely Numbers in the 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 오늘 비슷한문제의 easy문제를 풀었었는데.. 이 문제에서도 처음 풀이를 할 때 시간초과가 나왔다.. ㅠㅠㅠ 초과가 나온풀이는 var findLonely = function (nums) { const unique = distin..
https://leetcode.com/problems/count-common-words-with-one-occurrence/ Count Common Words With One Occurrence - 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 주어진 두개의 array에서 중복이 없는 것들 중에서 두개의 중복이 되는 array의 length를 구하는 문제이다. 1. 각 array에 중복이 없는 child를 구하는 function을 구하고 2. 두개에서 공통적인 ..
https://leetcode.com/problems/merge-strings-alternately/ Merge Strings Alternately - 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 최대한 깔끔하게 보이게 하려고 풀이를 했다. 우선 이문제같은경우는 condition || falsy 를 사용하여 값을 가지고있는지 아닌지를 사용하는게 좋은 문제이다. 1. word1과 word2중에 길이가 더 긴 것을 구한다. 정답을 받을 result를 선언한다 co..
우연히 광고를 통해서 CS 공부비서에 대해 알게되었다. 뭐 돈이드는것도 아니다보니.. 일단 친구등록을 했더니.. 당일 메시지가 도착했는데.. 오이.. 질문을 왜 너가해! 답변을줘!라고 생각을 했는데 다음날보니.. 네.. 질문을 제공하는거군요.. 그래서도착한 오늘 질문 사실 이걸 그냥 질문만 받는다고해서 내가 뭔가 되는게 아니다보니까, 오늘부터! CS 공부 비서가 물어본 것을 답변하기로 했다! https://codevil.tistory.com/126 [0629] 사설 IP와 공인 IP의 차이를 설명해 주세요 공인 IP 1. 전세계에서 유일하며, 공개되어있는 IP입니다. 2. ICANN기관에서 국가 별로 사용할 IP 대역을 관리하고 있습니다. 3. KT, LG유플러스, SK브로드밴 같은 ISP(인터넷 서비스..
공인 IP 1. 전세계에서 유일하며, 공개되어있는 IP입니다. 2. ICANN기관에서 국가 별로 사용할 IP 대역을 관리하고 있습니다. 3. KT, LG유플러스, SK브로드밴 같은 ISP(인터넷 서비스 공급자)가 제공하고 있습니다. 4. 공인 IP는 외부에 공개되어 있어서 인터넷에 연결된 다른 컴퓨터에 접근이 가능하기에 보안 프로그램이 필요합니다 사설 IP 1. 로컬 혹은 가상 IP라 불리며, 외부접근을 할 수 없는 IP입니다. 2. 일반 가정이나 회사에 할당되어있는 IP주소입니다. 3. IPv4의 주소 부족으로 인해 서브넷팅된 IP라서 라우터(공유기)에 의해 로컬 네트워크상의 PC나 장치에 할당됩니다. (사설IP만으로는 인터넷 직접연결이 안되며, 라우터를 통해 공인 IP를 할당하여 라우터에 연결된 개인..
https://leetcode.com/problems/simplified-fractions/ Simplified Fractions - 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 n이 주어진다면 1/2부터... (n-1)/n 까지 겹치지 않는 분수를 넣는 문제이다. 문제의 개념은 매우 심플하다. 1. 이문제의 경우 중복을 확인해야 하기 때문에 리스트를 리턴할 리스트와, 중복을 체크할 리스트 두개를 만든다. const result = [] const check ..
https://leetcode.com/problems/count-integers-with-even-digit-sum/ Count Integers With Even Digit Sum - 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부터 주어진 숫자까지의 숫자 중에서 (예시 주어진숫자가 5라면 1,2,3,4,5) 각 자리 숫자의 합이 짝수의 합 (예시, 11=>1+1은 짝수다). 1. answer은 0으로 설정한다 let answer =0 2. 1부너 n까지의 ..
https://leetcode.com/problems/two-out-of-three/ Two Out of Three - 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 3개의 array에 한번이라도 겹치는 경우가 있다면 그것을 리턴하는 문제이다. 1. 1번에 있는 숫자중에서, 2번 혹은 3번에 있는 숫자를 필터한다 const filteredNum1 = nums1.filter((x) => nums2.includes(x) || nums3.includes(x)) 2. ..