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

윈도우 탐색기에서 파일을 열지 않고 미리보기창으로 보는 습관이 있다. 파일을 일일이 클릭해서 보지 않아도 되고, 때론 파일을 굳이 열지 않고 원하는 내용을 파악할 수 있다는 장점이 있다. 어도비 Acrobat PDF를 사용했다면, 설정에서 옵션이 있었겠지만, 알PDF를 사용하고 있어서 문제가 생겼다. 알PDF라고 원래부터 안 보인 건 아니었는데, 언젠가 업데이트를 하고부터 보이지 않았다. 세상 불편해서 여러 차례 검색하고 알PDF 사이트에도 몇 번을 들어가 봤지만, 윈도우 파일 탐색기에 PDF 미리보기가 안 뜰 때(알PDF 사용 시) 해결 방법을 찾지 못했다. 하지만 이 불편함을 참을 수 없었고.. 결국은 해결 방법을 찾아냈는데.. Acrobat Reader를 다운로드하는 것이었다. (문서 편집 ..

COMPARISON SORTS Average Time Complexity Bubble Sort - O(n^2) Insertion Sort - O(n^2) Selection Sort - O(n^2) Quick Sort - O(n log (n)) Merge Sort - O(n log (n)) RADIX SORT | 기수 정렬 Radix sort is a special sorting algorithm that works on lists of numbers It never makes comparisons between elements! It exploits the fact that information about the size of a number is encoded in the number of digits..

Udemy - 【한글자막】 JavaScript 알고리즘 & 자료구조 마스터클래스 Intermediate Sorting Algorithms Quick Sort | 퀵 정렬 Like merge sort, exploits the fact that arrays of 0 or 1 element are always sorted Works by selecting one element (called the "pivot") and finding the index where the pivot should end up in the sorted array Once the pivot is positioned appropriately, quick sort can be applied on either side of the pivo..

Udemy - 【한글자막】 JavaScript 알고리즘 & 자료구조 마스터클래스 Intermediate Sorting Algorithms WHY LEARN THIS? The sorting algorithms we've learned so far don't scale well Try out bubble sort on an array of 100000 elements, it will take quite some time! We need to be able to sort large arrays more quickly Merge Sort | 합병 정렬 It's a combination of two things - merging and sorting! Exploits the fact that arrays of 0..

Udemy - 【한글자막】 JavaScript 알고리즘 & 자료구조 마스터클래스 Selection Sort 선택 정렬 Similar to bubble sort, but instead of first placing large values into sorted position, it places small values into sorted position Selection Sort Pseudocode Store the first element as the smallest value you've seen so far. Compare this item to the next item in the array until you find a smaller number. If a smaller number is foun..

Udemy - 【한글자막】 JavaScript 알고리즘 & 자료구조 마스터클래스 Elementary Sorting Algorithms | 정렬 알고리즘 What is sorting? Sorting is the process of rearranging the items in a collection (e.g. an array) so that the items are in some kind of order. Examples Sorting numbers from smallest to largest Sorting names alphabetically Sorting movies based on release year Sorting movies based on revenue Sorting is an incredibl..

React Navtive 스터디 7week 도서: [리액트 네이티브를 다루는 기술 / 김민준 / 길벗] (6장 다이어리 앱 만들기 ①-①) 6.1 프로젝트 준비하기 6.2 Context API 사용하기 6.3 새 글 작성하기 6.4 글 목록 보여주기 6.5 Animated로 애니매이션 적용하기 6.6 정리 6.1 프로젝트 준비하기 스택 내비게이터, 하단 탭 내비게이터 라이브러리 설치, 아이콘 라이브러리 설치 npx react-native init DayLog cd DayLog yarn add @react-navigation/native @react-navigation/native-stack @react-navigation/bottom-tabs react-native-screens react-native-..

Udemy - 【한글자막】 JavaScript 알고리즘 & 자료구조 마스터클래스 How do we search? Given an array, the simplest way to search for an value is to look at every element in the array and check if it's the value we want. JavaScript has search! There are many different search methods on arrays in JavaScript: indexOf includes find findIndex Linear Search Pseudocode This function accepts an array and a value Loop through ..