일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 사전준비
- 알고리즘기초주차
- Expo
- NotionAI
- 7기
- 실전프로젝트
- 필수강의
- 멍친구
- TDD
- 알pdf #파일탐색기미리보기안될때
- rn
- 코린이
- TS
- REACT
- 프론트엔드
- typeScript
- 팀워크최고
- Ai
- Programmers
- 챗GPT
- 스파르타코딩클럽
- ReactNative
- D반8조
- 웹개발종합반
- 항해99
- 달리기반
- ChatGPT
- 리액트
- 맥린이
- 프로그래머스
- Today
- Total
목록분류 전체보기 (128)
FrontEnd :-)

Udemy - 【한글자막】 JavaScript 알고리즘 & 자료구조 마스터클래스 #Prac 10. power Write a function called power which accepts a base and an exponent. The function should return the power of the base to the exponent. This function should mimic the functionality of Math.pow() - do not worry about negative bases and exponents. 🅰️ (제출 답) ✅ (풀이 과정) // power(2,0) // 1 // power(2,2) // 4 // power(2,4) // 16 function power(..

Udemy - 【한글자막】 JavaScript 알고리즘 & 자료구조 마스터클래스 재귀는 자기 자신을 호출하는 함수. * 중단점(종료점) 반드시 있어야 함! * 스택 오버플로는 재귀가 멈추지 않는다는 의미. 종료점이 없을 때. # 재귀 함수 예제 1 // Recursive Version function countDown(num){ if(num 0; i--){ console.log(i); } console.log("All done!") } # 재귀 함수 예제 2 function sumRange(num){ if(num === 1) return 1; return num + sumRange(num-1); } sumRange(4) # 재귀 함수 예제 3 // Recursive Version function fact..

Udemy - 【한글자막】 JavaScript 알고리즘 & 자료구조 마스터클래스 SLIDING WINDOW 기준점 간 이동 배열 패턴 This pattern involves creating a window which can either be an array or number from one position to another. Depending on a certain condition, the window either increases or closes (and a new window is created). Very useful for keeping track of a subset of data in an array/string etc. 배열/ 문자열 등에서 데이터의 하위 집합을 추적하는 데 매우 유용합..

React Navtive 스터디 6week 도서: [리액트 네이티브를 다루는 기술 / 김민준 / 길벗] (5장 리액트 내비게이션으로 여러 화면 관리하기 ②) 5.1 설치 및 적용하기 5.2 기본적인 사용법 5.3 다양한 내비게이터 5.4 내비게이션 Hooks 5.5 정리 5.3 다양한 내비게이터 5.3.1 드로어 내비게이터 @react-navigation/drawer : Drawer Navigator 는 좌측 또는 우측에 사이드바를 만들고 싶을 때 사용하는 내비게이터. 사이드바를 모바일 앱에서는 드로어(Drawer)라고 함. https://reactnavigation.org/docs/drawer-navigator/ yarn add @react-navigation/drawer react-native-ges..

Udemy - 【한글자막】 JavaScript 알고리즘 & 자료구조 마스터클래스 Divide and Conquer 분할과 정복 패턴 This pattern involves dividing a data set into smaller chunks and then repeating a process with a subset of data. This pattern can tremendously decrease time complexity #1. Divide and Conquer Given a sorted array of integers, write a function called search, that accepts a value and returns the index where the value passed ..

Dependabot alerts 해결 다른 프로젝트 작업 중- 깃허브 보안 취약 문제 Dependabot alerts 등장ㅠ 하지만 해결했으니!😃 버전이 낮아서 보안이 취약하다는 경고들인데..! (npm이었으면 더 쉽게 해결했을텐데 yarn패키지로 만들어서 조금 더 걸린 것 같다) 🍍1. react-scripts를 devDependencies로 옮기기(dependencies에 있었다): 1-1. yarn remove react-scripts 1-2. yarn add react-scripts -D //package.json "devDependencies": { "react-scripts": "^5.0.1" }, => 하나 해결됨! 문제는 nth-check.. (npm이면) audit으로 해결할 수 있다고 ..

React Navtive 스터디 6week 도서: [리액트 네이티브를 다루는 기술 / 김민준 / 길벗] (5장 리액트 내비게이션으로 여러 화면 관리하기 ①) 5.1 설치 및 적용하기 5.2 기본적인 사용법 5.3 다양한 내비게이터 5.4 내비게이션 Hooks 5.5 정리 여러 화면으로 구성된 애플리케이션을 만들려면 내비게이션 관련 서드 파티 라이브러리를 사용해야 한다. 내비게이션과 관련해 사용할 수 있는 라이브러리 2가지 1) react-navigation : 리액트 네이티브 커뮤니티에서 관리. 사용률이 가장 높음. 리액트 공식 메뉴얼에서도 이 라이브러리로 화면을 전환하는 방법을 소개. 내비게이션 기능이 자바스크립트로 구현되어 있음. 사용법도 2)보다 쉽고, 별도 API가 아닌 리액트 컴포넌트를 사용해 ..

Udemy - 【한글자막】 JavaScript 알고리즘 & 자료구조 마스터클래스 #1. Frequency Counter - Multiple Pointers Write a function called sumZero which accepts a sorted array of integers. The function should find the first pair where the sum is 0. Return an array that includes both values that sum to zero or undefined if a pair does not exist //Time Complexity - O(N^2) //Space Complexity - O(1) function sumZero(arr){ for(..