| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 멍친구
- 알pdf #파일탐색기미리보기안될때
- REACT
- NotionAI
- TDD
- typeScript
- 웹개발종합반
- Programmers
- 항해99
- Expo
- 프론트엔드
- 맥린이
- 챗GPT
- D반8조
- 스파르타코딩클럽
- 사전준비
- Ai
- rn
- 코린이
- 7기
- 리액트
- 팀워크최고
- 알고리즘기초주차
- TS
- ReactNative
- 실전프로젝트
- 프로그래머스
- 필수강의
- 달리기반
- ChatGPT
- Today
- Total
목록JavaScript (31)
FrontEnd :-)
(Udemy) The Web Developer 부트캠프 2023 :: 섹션 33: Express로 서버 제작하기 (Express 공식 문서) https://expressjs.com/ko [334. 우리의 첫 번째 Express 앱] 폴더 생성, express 설치, index.js 생성 mkdir FirstApp cd FristApp npm init -y npm i express touch index.js //index.js const express = require("express"); const app = express(); // console.dir(app) app.listen(8080, () => { console.log("Listening on port 8080!") }) 작성 후, 터미널에서 ..
🙋 문제: 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..
🙋 문제: 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..
🙋 문제: Palindrome Number (대칭수) Given an integer x, return true if x is a palindrome*, and false otherwise. *palindrome: An integer is a palindrome when it reads the same forward and backward. For example, 121 is a palindrome while 123 is not. Example 1: Input: x = 121 Output: true Explanation: 121 reads as 121 from left to right and from right to left. Example 2: Input: x = -121 Output: false Exp..
🙋 문제: Two Sum / Easy Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. Example 1: Input: nums = [2,7,11,15], target = 9 Output: [0,1] Explanation: Because nums[0] + nums[1] == 9,..