| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- TDD
- 프로그래머스
- 스파르타코딩클럽
- 7기
- rn
- ChatGPT
- 달리기반
- 코린이
- ReactNative
- 사전준비
- 리액트
- Programmers
- D반8조
- 챗GPT
- typeScript
- 멍친구
- TS
- Expo
- 웹개발종합반
- 항해99
- 프론트엔드
- 실전프로젝트
- Ai
- 알pdf #파일탐색기미리보기안될때
- 필수강의
- 맥린이
- NotionAI
- 알고리즘기초주차
- 팀워크최고
- REACT
- Today
- Total
목록분류 전체보기 (128)
FrontEnd :-)
1. https://velog.io/@eunbinn/javascript-data-structures [번역] 현실 세계 프런트엔드에서 사용되는 자바스크립트 자료구조: 리액트 코드 예시와 함께 프런트엔드 자바스크립트 개발자로서 자료구조 공부는 필요한가요? 프런트엔드를 개발하며 얼마나 자료구조를 사용하고 계신가요? 이 글에서는 실무에서 사용할 수 있는 예시를 통해 프런트엔 velog.io 👍 2. https://velog.io/@surim014/how-next.js-works Next.js 작동 방식 프로젝트 혹은 업무에서 Next.js를 사용해보신 적 있으신가요? 이 글에서는 Next.js의 동작 원리에 대한 부분 외에도 다양한 개념들을 소개하고 있습니다. velog.io " - Next.js에서 컴파일은..
🙋 문제: Merge Two Sorted Lists You are given the heads of two sorted linked lists list1 and list2. Merge the two lists in a one sorted list. The list should be made by splicing together the nodes of the first two lists. Return the head of the merged linked list. Example 1: Input: list1 = [1,2,4], list2 = [1,3,4] Output: [1,1,2,3,4,4] Example 2: Input: list1 = [], list2 = [] Output: [] Example 3: I..
1. http://blog.hwahae.co.kr/all/tech/tech-tech/10823/ 화해 어드민 리뉴얼을 마치며 – 화해 블로그 | 기술 블로그 화해 어드민 리뉴얼을 마치며 회사마다 차이가 있겠지만 어드민의 중요성을 공감한다 해도 고객에게 직접적인 영향을 주는 제품보다는 우선순위가 높게 다뤄지진 않습니다. 화해 역시 서비스 blog.hwahae.co.kr 2. https://velog.io/@teo/rxjs
node 버전 16.15 을 쓰고 있었는데, 벌써 18버전이 stable 하다니... 업데이트의 필요성을 느끼고 업데이트 고고. 방법 1. 터미널 켜기 2. 현재 노드 버전 확인 node -v v16.15.0 이 나온다. 3. (n 모듈이 설치 안 되어 있을 경우) n 모듈 설치 (https://www.npmjs.com/package/n) // nvm을 이용할수도 있다고. npm install -g n (선택) npm cache clean 4. stable 버전으로 설치 n stable Stable 버전 설치 $ n stable 최신 버전 설치 $ n latest LTS 버전 설치 $ n lts 특정 버전 설치 $ n 하지만, 최신 버전은 설치됐는데, active 된 노드는 여전히 16.15 였다... ..
🙋 문제: Valid Parentheses Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if: Open brackets must be closed by the same type of brackets. Open brackets must be closed in the correct order. Every close bracket has a corresponding open bracket of the same type. Example 1: Input: s = "()" Output: true Exa..
🙋 문제: Longest Common Prefix Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Example 1: Input: strs = ["flower","flow","flight"] Output: "fl" Example 2: Input: strs = ["dog","racecar","car"] Output: "" Explanation: There is no common prefix among the input strings. Constraints: 1 strs 배열의 첫 번째 문자를 기준으로..
🙋 문제: Roman to Integer Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. Symbol Value I 1 V 5 X 10 L 50 C 100 D 500 M 1000 For example, 2 is written as II in Roman numeral, just two ones added together. 12 is written as XII, which is simply X + II. The number 27 is written as XXVII, which is XX + V + II. Roman numerals are usually written largest to smallest from..
1. https://9to5google.com/2022/12/05/google-search-continuous-scrolling-2/?utm_source=tldrnewsletter Google switching to continuous scrolling for desktop Search results Google is adopting continuous scrolling for desktop Search results as it did for the mobile website in October 2021. 9to5google.com " (TLDR 번역) Google이 데스크톱 검색 결과에 대해 연속 스크롤을 표시하기 시작합니다. 이제 사용자는 결과 페이지 하단에 도달한 후 최대 6페이지의 결과를 볼 수 ..