일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래머스
- 자바스크립트 연결리스트
- 자바스크립트 문제풀이
- 제로베이스
- NPM
- HTML
- leetcode문제풀이
- 리액트쿼리
- 리액트
- 자바스크립트
- 자바스크립트 알고리즘
- 자바스크립트 문제 풀이
- 알고리즘문제풀이
- next13
- Next
- react
- leetcode
- Baekjoon
- til
- stack문제
- lodash
- CSS
- Next.js13
- JS
- 프론트엔드
- 타입스크립트
- JavaScript
- 자바스크립트코딩테스트
- 자바스크립트 문제
- 자바스크립트 알고리즘 문제
- Today
- Total
목록leetcode문제풀이 (2)
코드노트
문제 설명 더보기 You are given an integer array height of length n. There are n vertical lines drawn such that the two endpoints of the ith line are (i, 0) and (i, height[i]). Find two lines that together with the x-axis form a container, such that the container contains the most water. Return the maximum amount of water a container can store. height길이 의 정수 배열이 제공 됩니다 n. 선의 두 끝점이 및 가 되도록 n수직선이 그려집니다. i..
문제 설명 더보기 Given a string s consisting of words and spaces, return the length of the last word in the string. A word is a maximal substring consisting of non-space characters only. 단어와 공백으로 구성된 문자열이 주어지면 문자열의 마지막 단어 길이를 반환합니다. 단어는 공백이 아닌 문자로만 구성된 최대 부분 문자열입니다. // 1 Input: s = "Hello World" Output: 5 Explanation: The last word is "World" with length 5. // 2 Input: s = " fly me to the moon " Output..