반응형
Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- array
- state
- Props
- component
- node.js
- BinaryTree
- queue
- count
- route
- treenode
- Callback
- DP
- JSX
- leetcode
- map
- 비트연산
- css
- Context
- axios
- priority_queue
- React
- Navigation
- bit
- server
- event
- UE5
- nodeJS
- c++
- MySQL
- routes
Archives
- Today
- Total
목록TwoPointers (1)
우사미 코딩
[Leetcode] 148. Sort List
1. 문제링크 Sort List - LeetCode Can you solve this real interview question? Sort List - Given the head of a linked list, return the list after sorting it in ascending order. Example 1: [https://assets.leetcode.com/uploads/2020/09/14/sort_list_1.jpg] Input: head = [4,2,1,3] Output: [1, leetcode.com 지맘대로 생긴 ListNode를 오름차순으로 정렬하는 문제 2. Key Point - 제일 미니한 단위로 쪼갠다(재귀호출), merge한다 1) ListNode를 두개로 나눈다 - s..
Leetcode
2023. 5. 19. 16:17