Skip to content

Commit 4caee25

Browse files
authored
Added tasks 21-25
1 parent 44a9884 commit 4caee25

File tree

16 files changed

+503
-0
lines changed

16 files changed

+503
-0
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
7777

7878
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
7979
|-|-|-|-|-|-
80+
| 0021 |[Merge Two Sorted Lists](src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_Space_O(m+n) | 0 | 100.00
8081

8182
#### Day 11 Recursion Backtracking
8283

@@ -157,6 +158,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
157158
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
158159
|-|-|-|-|-|-
159160
| 0017 |[Letter Combinations of a Phone Number](src/main/js/g0001_0100/s0017_letter_combinations_of_a_phone_number/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Backtracking, Big_O_Time_O(4^n)_Space_O(n) | 0 | 100.00
161+
| 0022 |[Generate Parentheses](src/main/js/g0001_0100/s0022_generate_parentheses/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Backtracking, Big_O_Time_O(2^n)_Space_O(n) | 0 | 100.00
160162

161163
#### Day 12 Dynamic Programming
162164

@@ -786,6 +788,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
786788

787789
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
788790
|-|-|-|-|-|-
791+
| 0021 |[Merge Two Sorted Lists](src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_Space_O(m+n) | 0 | 100.00
789792

790793
#### Day 4 Linked List
791794

@@ -1005,6 +1008,9 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10051008

10061009
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10071010
|-|-|-|-|-|-
1011+
| 0024 |[Swap Nodes in Pairs](src/main/js/g0001_0100/s0024_swap_nodes_in_pairs/solution.js)| Medium | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_Space_O(1) | 1 | 100.00
1012+
| 0021 |[Merge Two Sorted Lists](src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_Space_O(m+n) | 0 | 100.00
1013+
| 0025 |[Reverse Nodes in k-Group](src/main/js/g0001_0100/s0025_reverse_nodes_in_k_group/solution.js)| Hard | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_Space_O(k) | 0 | 100.00
10081014

10091015
#### Udemy Tree Stack Queue
10101016

@@ -1031,6 +1037,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10311037

10321038
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10331039
|-|-|-|-|-|-
1040+
| 0022 |[Generate Parentheses](src/main/js/g0001_0100/s0022_generate_parentheses/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Backtracking, Big_O_Time_O(2^n)_Space_O(n) | 0 | 100.00
10341041
| 0017 |[Letter Combinations of a Phone Number](src/main/js/g0001_0100/s0017_letter_combinations_of_a_phone_number/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Backtracking, Big_O_Time_O(4^n)_Space_O(n) | 0 | 100.00
10351042

10361043
#### Udemy Bit Manipulation
@@ -1080,6 +1087,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10801087

10811088
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10821089
|-|-|-|-|-|-
1090+
| 0021 |[Merge Two Sorted Lists](src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_Space_O(m+n) | 0 | 100.00
10831091

10841092
#### Day 8 Linked List
10851093

@@ -1181,11 +1189,13 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
11811189

11821190
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11831191
|-|-|-|-|-|-
1192+
| 0024 |[Swap Nodes in Pairs](src/main/js/g0001_0100/s0024_swap_nodes_in_pairs/solution.js)| Medium | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_Space_O(1) | 1 | 100.00
11841193

11851194
#### Day 13 Linked List
11861195

11871196
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11881197
|-|-|-|-|-|-
1198+
| 0025 |[Reverse Nodes in k-Group](src/main/js/g0001_0100/s0025_reverse_nodes_in_k_group/solution.js)| Hard | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_Space_O(k) | 0 | 100.00
11891199

11901200
#### Day 14 Stack Queue
11911201

@@ -1231,6 +1241,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
12311241

12321242
| # | Title | Difficulty | Tag | Time, ms | Time, %
12331243
|------|----------------|-------------|-------------|----------|---------
1244+
| 0025 |[Reverse Nodes in k-Group](src/main/js/g0001_0100/s0025_reverse_nodes_in_k_group/solution.js)| Hard | Top_100_Liked_Questions, Linked_List, Recursion, Data_Structure_II_Day_13_Linked_List, Udemy_Linked_List, Big_O_Time_O(n)_Space_O(k) | 0 | 100.00
1245+
| 0024 |[Swap Nodes in Pairs](src/main/js/g0001_0100/s0024_swap_nodes_in_pairs/solution.js)| Medium | Top_100_Liked_Questions, Linked_List, Recursion, Data_Structure_II_Day_12_Linked_List, Udemy_Linked_List, Big_O_Time_O(n)_Space_O(1) | 1 | 100.00
1246+
| 0023 |[Merge k Sorted Lists](src/main/js/g0001_0100/s0023_merge_k_sorted_lists/solution.js)| Hard | Top_100_Liked_Questions, Top_Interview_Questions, Heap_Priority_Queue, Linked_List, Divide_and_Conquer, Merge_Sort, Big_O_Time_O(k\*n\*log(k))_Space_O(log(k)) | 3 | 99.39
1247+
| 0022 |[Generate Parentheses](src/main/js/g0001_0100/s0022_generate_parentheses/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Backtracking, Algorithm_II_Day_11_Recursion_Backtracking, Udemy_Backtracking/Recursion, Big_O_Time_O(2^n)_Space_O(n) | 0 | 100.00
1248+
| 0021 |[Merge Two Sorted Lists](src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Data_Structure_I_Day_7_Linked_List, Algorithm_I_Day_10_Recursion_Backtracking, Level_1_Day_3_Linked_List, Udemy_Linked_List, Big_O_Time_O(m+n)_Space_O(m+n) | 0 | 100.00
12341249
| 0020 |[Valid Parentheses](src/main/js/g0001_0100/s0020_valid_parentheses/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, String, Stack, Data_Structure_I_Day_9_Stack_Queue, Udemy_Strings, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
12351250
| 0019 |[Remove Nth Node From End of List](src/main/js/g0001_0100/s0019_remove_nth_node_from_end_of_list/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Two_Pointers, Linked_List, Algorithm_I_Day_5_Two_Pointers, Level_2_Day_3_Linked_List, Big_O_Time_O(L)_Space_O(L) | 0 | 100.00
12361251
| 0017 |[Letter Combinations of a Phone Number](src/main/js/g0001_0100/s0017_letter_combinations_of_a_phone_number/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Backtracking, Algorithm_II_Day_11_Recursion_Backtracking, Udemy_Backtracking/Recursion, Big_O_Time_O(4^n)_Space_O(n) | 0 | 100.00
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
21\. Merge Two Sorted Lists
2+
3+
Easy
4+
5+
Merge two sorted linked lists and return it as a **sorted** list. The list should be made by splicing together the nodes of the first two lists.
6+
7+
**Example 1:**
8+
9+
![](https://assets.leetcode.com/uploads/2020/10/03/merge_ex1.jpg)
10+
11+
**Input:** l1 = [1,2,4], l2 = [1,3,4]
12+
13+
**Output:** [1,1,2,3,4,4]
14+
15+
**Example 2:**
16+
17+
**Input:** l1 = [], l2 = []
18+
19+
**Output:** []
20+
21+
**Example 3:**
22+
23+
**Input:** l1 = [], l2 = [0]
24+
25+
**Output:** [0]
26+
27+
**Constraints:**
28+
29+
* The number of nodes in both lists is in the range `[0, 50]`.
30+
* `-100 <= Node.val <= 100`
31+
* Both `l1` and `l2` are sorted in **non-decreasing** order.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
// #Easy #Top_100_Liked_Questions #Top_Interview_Questions #Linked_List #Recursion
2+
// #Data_Structure_I_Day_7_Linked_List #Algorithm_I_Day_10_Recursion_Backtracking
3+
// #Level_1_Day_3_Linked_List #Udemy_Linked_List #Big_O_Time_O(m+n)_Space_O(m+n)
4+
// #2024_12_04_Time_0_ms_(100.00%)_Space_52.3_MB_(20.64%)
5+
6+
import { ListNode } from "../../com_github_leetcode/listnode";
7+
8+
/**
9+
* Definition for singly-linked list.
10+
* function ListNode(val, next) {
11+
* this.val = (val===undefined ? 0 : val)
12+
* this.next = (next===undefined ? null : next)
13+
* }
14+
*/
15+
/**
16+
* @param {ListNode} list1
17+
* @param {ListNode} list2
18+
* @return {ListNode}
19+
*/
20+
var mergeTwoLists = function (list1, list2) {
21+
let dummy = new ListNode()
22+
let current = dummy
23+
while (list1 !== null && list2 !== null) {
24+
if (list1.val <= list2.val) {
25+
current.next = list1
26+
list1 = list1.next
27+
} else {
28+
current.next = list2
29+
list2 = list2.next
30+
}
31+
current = current.next
32+
}
33+
if (list1 !== null) {
34+
current.next = list1
35+
} else if (list2 !== null) {
36+
current.next = list2
37+
}
38+
return dummy.next;
39+
};
40+
41+
export { mergeTwoLists }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
22\. Generate Parentheses
2+
3+
Medium
4+
5+
Given `n` pairs of parentheses, write a function to _generate all combinations of well-formed parentheses_.
6+
7+
**Example 1:**
8+
9+
**Input:** n = 3
10+
11+
**Output:** ["((()))","(()())","(())()","()(())","()()()"]
12+
13+
**Example 2:**
14+
15+
**Input:** n = 1
16+
17+
**Output:** ["()"]
18+
19+
**Constraints:**
20+
21+
* `1 <= n <= 8`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #String #Dynamic_Programming
2+
// #Backtracking #Algorithm_II_Day_11_Recursion_Backtracking #Udemy_Backtracking/Recursion
3+
// #Big_O_Time_O(2^n)_Space_O(n) #2024_12_04_Time_0_ms_(100.00%)_Space_50.7_MB_(42.00%)
4+
5+
/**
6+
* @param {number} n
7+
* @return {string[]}
8+
*/
9+
var generateParenthesis = function(n) {
10+
const result = [];
11+
12+
const generate = (current, open, close) => {
13+
if (open === 0 && close === 0) {
14+
result.push(current);
15+
return;
16+
}
17+
if (open > 0) {
18+
generate(current + '(', open - 1, close);
19+
}
20+
if (close > 0 && open < close) {
21+
generate(current + ')', open, close - 1);
22+
}
23+
};
24+
25+
generate('', n, n);
26+
return result;
27+
};
28+
29+
export { generateParenthesis }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
23\. Merge k Sorted Lists
2+
3+
Hard
4+
5+
You are given an array of `k` linked-lists `lists`, each linked-list is sorted in ascending order.
6+
7+
_Merge all the linked-lists into one sorted linked-list and return it._
8+
9+
**Example 1:**
10+
11+
**Input:** lists = [[1,4,5],[1,3,4],[2,6]]
12+
13+
**Output:** [1,1,2,3,4,4,5,6]
14+
15+
**Explanation:** The linked-lists are: [ 1->4->5, 1->3->4, 2->6 ] merging them into one sorted list: 1->1->2->3->4->4->5->6
16+
17+
**Example 2:**
18+
19+
**Input:** lists = []
20+
21+
**Output:** []
22+
23+
**Example 3:**
24+
25+
**Input:** lists = [[]]
26+
27+
**Output:** []
28+
29+
**Constraints:**
30+
31+
* `k == lists.length`
32+
* `0 <= k <= 10^4`
33+
* `0 <= lists[i].length <= 500`
34+
* `-10^4 <= lists[i][j] <= 10^4`
35+
* `lists[i]` is sorted in **ascending order**.
36+
* The sum of `lists[i].length` won't exceed `10^4`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
// #Hard #Top_100_Liked_Questions #Top_Interview_Questions #Heap_Priority_Queue #Linked_List
2+
// #Divide_and_Conquer #Merge_Sort #Big_O_Time_O(k*n*log(k))_Space_O(log(k))
3+
// #2024_12_04_Time_3_ms_(99.39%)_Space_55.8_MB_(67.69%)
4+
5+
/**
6+
* Definition for singly-linked list.
7+
* function ListNode(val, next) {
8+
* this.val = (val===undefined ? 0 : val)
9+
* this.next = (next===undefined ? null : next)
10+
* }
11+
*/
12+
/**
13+
* @param {ListNode[]} lists
14+
* @return {ListNode}
15+
*/
16+
const mergeKLists = function(lists) {
17+
if (lists.length === 0) {
18+
return null
19+
}
20+
return mergeKListsHelper(lists, 0, lists.length)
21+
};
22+
23+
const mergeKListsHelper = function(lists, leftIndex, rightIndex) {
24+
if (rightIndex > leftIndex + 1) {
25+
const mid = Math.floor((leftIndex + rightIndex) / 2)
26+
const left = mergeKListsHelper(lists, leftIndex, mid)
27+
const right = mergeKListsHelper(lists, mid, rightIndex)
28+
return mergeTwoLists(left, right)
29+
} else {
30+
return lists[leftIndex]
31+
}
32+
};
33+
34+
const mergeTwoLists = function(left, right) {
35+
if (left === null) {
36+
return right
37+
}
38+
if (right === null) {
39+
return left
40+
}
41+
42+
let res;
43+
if (left.val <= right.val) {
44+
res = left
45+
left = left.next
46+
} else {
47+
res = right
48+
right = right.next
49+
}
50+
51+
let current = res;
52+
while (left !== null || right !== null) {
53+
if (left === null) {
54+
current.next = right
55+
right = right.next
56+
} else if (right === null) {
57+
current.next = left
58+
left = left.next
59+
} else {
60+
if (left.val <= right.val) {
61+
current.next = left
62+
left = left.next
63+
} else {
64+
current.next = right
65+
right = right.next
66+
}
67+
}
68+
current = current.next
69+
}
70+
71+
return res
72+
};
73+
74+
export { mergeKLists }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
24\. Swap Nodes in Pairs
2+
3+
Medium
4+
5+
Given a linked list, swap every two adjacent nodes and return its head. You must solve the problem without modifying the values in the list's nodes (i.e., only nodes themselves may be changed.)
6+
7+
**Example 1:**
8+
9+
![](https://assets.leetcode.com/uploads/2020/10/03/swap_ex1.jpg)
10+
11+
**Input:** head = [1,2,3,4]
12+
13+
**Output:** [2,1,4,3]
14+
15+
**Example 2:**
16+
17+
**Input:** head = []
18+
19+
**Output:** []
20+
21+
**Example 3:**
22+
23+
**Input:** head = [1]
24+
25+
**Output:** [1]
26+
27+
**Constraints:**
28+
29+
* The number of nodes in the list is in the range `[0, 100]`.
30+
* `0 <= Node.val <= 100`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
// #Medium #Top_100_Liked_Questions #Linked_List #Recursion #Data_Structure_II_Day_12_Linked_List
2+
// #Udemy_Linked_List #Big_O_Time_O(n)_Space_O(1)
3+
// #2024_12_04_Time_1_ms_(100.00%)_Space_49.6_MB_(8.69%)
4+
5+
/**
6+
* Definition for singly-linked list.
7+
* function ListNode(val, next) {
8+
* this.val = (val===undefined ? 0 : val)
9+
* this.next = (next===undefined ? null : next)
10+
* }
11+
*/
12+
/**
13+
* @param {ListNode} head
14+
* @return {ListNode}
15+
*/
16+
const swapPairs = function (head) {
17+
if (head === null) {
18+
return null
19+
}
20+
21+
const getLength = (node) => {
22+
let count = 0
23+
while (node !== null) {
24+
count++
25+
node = node.next
26+
}
27+
return count
28+
};
29+
30+
const reverse = (node, length) => {
31+
if (length < 2) {
32+
return node
33+
}
34+
35+
let current = node
36+
let prev = null
37+
let next
38+
39+
for (let i = 0; i < 2; i++) {
40+
next = current.next
41+
current.next = prev
42+
prev = current
43+
current = next
44+
}
45+
46+
node.next = reverse(current, length - 2)
47+
return prev
48+
};
49+
50+
const len = getLength(head)
51+
return reverse(head, len)
52+
};
53+
54+
export { swapPairs }

0 commit comments

Comments
 (0)