Skip to content

Commit d4245f0

Browse files
authored
Added tasks 322-437
1 parent b456c91 commit d4245f0

File tree

19 files changed

+488
-1
lines changed

19 files changed

+488
-1
lines changed

README.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
217217
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
218218
|-|-|-|-|-|-
219219
| 0072 |[Edit Distance](src/main/js/g0001_0100/s0072_edit_distance/solution.js)| Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n^2)_Space_O(n2) | 5 | 99.01
220+
| 0322 |[Coin Change](src/main/js/g0301_0400/s0322_coin_change/solution.js)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Breadth_First_Search, Big_O_Time_O(m\*n)_Space_O(amount) | 26 | 95.33
220221

221222
#### Day 19 Bit Manipulation
222223

@@ -522,6 +523,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
522523

523524
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
524525
|-|-|-|-|-|-
526+
| 0322 |[Coin Change](src/main/js/g0301_0400/s0322_coin_change/solution.js)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Breadth_First_Search, Big_O_Time_O(m\*n)_Space_O(amount) | 26 | 95.33
525527

526528
#### Day 21
527529

@@ -905,6 +907,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
905907

906908
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
907909
|-|-|-|-|-|-
910+
| 0394 |[Decode String](src/main/js/g0301_0400/s0394_decode_string/solution.js)| Medium | Top_100_Liked_Questions, String, Stack, Recursion, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
908911

909912
#### Day 15 Heap
910913

@@ -951,6 +954,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
951954

952955
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
953956
|-|-|-|-|-|-
957+
| 0437 |[Path Sum III](src/main/js/g0401_0500/s0437_path_sum_iii/solution.js)| Medium | Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(n)_Space_O(n) | 2 | 97.05
954958

955959
#### Day 8 Binary Search
956960

@@ -980,11 +984,13 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
980984
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
981985
|-|-|-|-|-|-
982986
| 0198 |[House Robber](src/main/js/g0101_0200/s0198_house_robber/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
987+
| 0322 |[Coin Change](src/main/js/g0301_0400/s0322_coin_change/solution.js)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Breadth_First_Search, Big_O_Time_O(m\*n)_Space_O(amount) | 26 | 95.33
983988

984989
#### Day 13 Dynamic Programming
985990

986991
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
987992
|-|-|-|-|-|-
993+
| 0416 |[Partition Equal Subset Sum](src/main/js/g0401_0500/s0416_partition_equal_subset_sum/solution.js)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Big_O_Time_O(n\*sums)_Space_O(n\*sums) | 18 | 97.98
988994
| 0152 |[Maximum Product Subarray](src/main/js/g0101_0200/s0152_maximum_product_subarray/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(N)_Space_O(1) | 0 | 100.00
989995

990996
#### Day 14 Sliding Window/Two Pointer
@@ -1047,6 +1053,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10471053
| 0003 |[Longest Substring Without Repeating Characters](src/main/js/g0001_0100/s0003_longest_substring_without_repeating_characters/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Sliding_Window, Big_O_Time_O(n)_Space_O(1), AI_can_be_used_to_solve_the_task | 3 | 98.96
10481054
| 0020 |[Valid Parentheses](src/main/js/g0001_0100/s0020_valid_parentheses/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, String, Stack, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
10491055
| 0005 |[Longest Palindromic Substring](src/main/js/g0001_0100/s0005_longest_palindromic_substring/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Big_O_Time_O(n)_Space_O(n) | 10 | 99.54
1056+
| 0394 |[Decode String](src/main/js/g0301_0400/s0394_decode_string/solution.js)| Medium | Top_100_Liked_Questions, String, Stack, Recursion, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
10501057
| 0049 |[Group Anagrams](src/main/js/g0001_0100/s0049_group_anagrams/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, String, Hash_Table, Sorting, Big_O_Time_O(n\*k_log_k)_Space_O(n) | 24 | 91.62
10511058

10521059
#### Udemy Binary Search
@@ -1165,6 +1172,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
11651172

11661173
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11671174
|-|-|-|-|-|-
1175+
| 0338 |[Counting Bits](src/main/js/g0301_0400/s0338_counting_bits/solution.js)| Easy | Dynamic_Programming, Bit_Manipulation, Big_O_Time_O(num)_Space_O(num) | 0 | 100.00
11681176

11691177
#### Udemy Design
11701178

@@ -1379,6 +1387,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
13791387
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
13801388
|-|-|-|-|-|-
13811389
| 0215 |[Kth Largest Element in an Array](src/main/js/g0201_0300/s0215_kth_largest_element_in_an_array/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Heap_Priority_Queue, Divide_and_Conquer, Quickselect, Big_O_Time_O(n\*log(n))_Space_O(log(n)) | 9 | 97.67
1390+
| 0347 |[Top K Frequent Elements](src/main/js/g0301_0400/s0347_top_k_frequent_elements/solution.js)| Medium | Top_100_Liked_Questions, Array, Hash_Table, Sorting, Heap_Priority_Queue, Counting, Divide_and_Conquer, Quickselect, Bucket_Sort, Big_O_Time_O(n\*log(n))_Space_O(k) | 6 | 95.00
13821391

13831392
#### Day 21 Heap Priority Queue
13841393

@@ -1389,8 +1398,14 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
13891398

13901399
| # | Title | Difficulty | Tag | Time, ms | Time, %
13911400
|------|----------------|-------------|-------------|----------|---------
1401+
| 0437 |[Path Sum III](src/main/js/g0401_0500/s0437_path_sum_iii/solution.js)| Medium | Depth_First_Search, Tree, Binary_Tree, Level_2_Day_7_Tree, Big_O_Time_O(n)_Space_O(n) | 2 | 97.05
1402+
| 0416 |[Partition Equal Subset Sum](src/main/js/g0401_0500/s0416_partition_equal_subset_sum/solution.js)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Level_2_Day_13_Dynamic_Programming, Big_O_Time_O(n\*sums)_Space_O(n\*sums) | 18 | 97.98
1403+
| 0394 |[Decode String](src/main/js/g0301_0400/s0394_decode_string/solution.js)| Medium | Top_100_Liked_Questions, String, Stack, Recursion, Level_1_Day_14_Stack, Udemy_Strings, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
1404+
| 0347 |[Top K Frequent Elements](src/main/js/g0301_0400/s0347_top_k_frequent_elements/solution.js)| Medium | Top_100_Liked_Questions, Array, Hash_Table, Sorting, Heap_Priority_Queue, Counting, Divide_and_Conquer, Quickselect, Bucket_Sort, Data_Structure_II_Day_20_Heap_Priority_Queue, Big_O_Time_O(n\*log(n))_Space_O(k) | 6 | 95.00
1405+
| 0338 |[Counting Bits](src/main/js/g0301_0400/s0338_counting_bits/solution.js)| Easy | Dynamic_Programming, Bit_Manipulation, Udemy_Bit_Manipulation, Big_O_Time_O(num)_Space_O(num) | 0 | 100.00
1406+
| 0322 |[Coin Change](src/main/js/g0301_0400/s0322_coin_change/solution.js)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Breadth_First_Search, Algorithm_II_Day_18_Dynamic_Programming, Dynamic_Programming_I_Day_20, Level_2_Day_12_Dynamic_Programming, Big_O_Time_O(m\*n)_Space_O(amount) | 26 | 95.33
13921407
| 0300 |[Longest Increasing Subsequence](src/main/js/g0201_0300/s0300_longest_increasing_subsequence/solution.js)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Binary_Search, Algorithm_II_Day_16_Dynamic_Programming, Binary_Search_II_Day_3, Dynamic_Programming_I_Day_18, Udemy_Dynamic_Programming, Big_O_Time_O(n\*log_n)_Space_O(n) | 4 | 93.09
1393-
| 0295 |[Find Median from Data Stream](src/main/js/g0201_0300/s0295_find_median_from_data_stream/solution.js)| Hard | Top_100_Liked_Questions, Sorting, Two_Pointers, Design, Heap_Priority_Queue, Data_Stream, Big_O_Time_O(n\*log_n)_Space_O(n) | 97 | 98.11
1408+
| 0295 |[Find Median from Data Stream](src/main/js/g0201_0300/s0295_find_median_from_data_stream/solution.js)| Hard | Top_100_Liked_Questions, Sorting, Two_Pointers, Design, Heap_Priority_Queue, Data_Stream, Big_O_Time_O(n\*log_n)_Space_O(n) | 134 | 76.00
13941409
| 0287 |[Find the Duplicate Number](src/main/js/g0201_0300/s0287_find_the_duplicate_number/solution.js)| Medium | Top_100_Liked_Questions, Array, Binary_Search, Two_Pointers, Bit_Manipulation, Binary_Search_II_Day_5, Big_O_Time_O(n)_Space_O(n) | 1 | 99.54
13951410
| 0283 |[Move Zeroes](src/main/js/g0201_0300/s0283_move_zeroes/solution.js)| Easy | Top_100_Liked_Questions, Array, Two_Pointers, Algorithm_I_Day_3_Two_Pointers, Programming_Skills_I_Day_6_Array, Udemy_Arrays, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
13961411
| 0240 |[Search a 2D Matrix II](src/main/js/g0201_0300/s0240_search_a_2d_matrix_ii/solution.js)| Medium | Top_100_Liked_Questions, Array, Binary_Search, Matrix, Divide_and_Conquer, Data_Structure_II_Day_4_Array, Binary_Search_II_Day_8, Big_O_Time_O(n+m)_Space_O(1) | 279 | 94.52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
322\. Coin Change
2+
3+
Medium
4+
5+
You are given an integer array `coins` representing coins of different denominations and an integer `amount` representing a total amount of money.
6+
7+
Return _the fewest number of coins that you need to make up that amount_. If that amount of money cannot be made up by any combination of the coins, return `-1`.
8+
9+
You may assume that you have an infinite number of each kind of coin.
10+
11+
**Example 1:**
12+
13+
**Input:** coins = [1,2,5], amount = 11
14+
15+
**Output:** 3
16+
17+
**Explanation:** 11 = 5 + 5 + 1
18+
19+
**Example 2:**
20+
21+
**Input:** coins = [2], amount = 3
22+
23+
**Output:** -1
24+
25+
**Example 3:**
26+
27+
**Input:** coins = [1], amount = 0
28+
29+
**Output:** 0
30+
31+
**Constraints:**
32+
33+
* `1 <= coins.length <= 12`
34+
* <code>1 <= coins[i] <= 2<sup>31</sup> - 1</code>
35+
* <code>0 <= amount <= 10<sup>4</sup></code>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// #Medium #Top_100_Liked_Questions #Array #Dynamic_Programming #Breadth_First_Search
2+
// #Algorithm_II_Day_18_Dynamic_Programming #Dynamic_Programming_I_Day_20
3+
// #Level_2_Day_12_Dynamic_Programming #Big_O_Time_O(m*n)_Space_O(amount)
4+
// #2024_12_22_Time_26_ms_(95.33%)_Space_54.1_MB_(79.36%)
5+
6+
/**
7+
* @param {number[]} coins
8+
* @param {number} amount
9+
* @return {number}
10+
*/
11+
var coinChange = function(coins, amount) {
12+
const dp = new Array(amount + 1).fill(0)
13+
dp[0] = 1
14+
15+
for (const coin of coins) {
16+
for (let i = coin; i <= amount; i++) {
17+
const prev = dp[i - coin]
18+
if (prev > 0) {
19+
if (dp[i] === 0) {
20+
dp[i] = prev + 1
21+
} else {
22+
dp[i] = Math.min(dp[i], prev + 1)
23+
}
24+
}
25+
}
26+
}
27+
28+
return dp[amount] - 1
29+
};
30+
31+
export { coinChange }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
338\. Counting Bits
2+
3+
Easy
4+
5+
Given an integer `n`, return _an array_ `ans` _of length_ `n + 1` _such that for each_ `i` (`0 <= i <= n`)_,_ `ans[i]` _is the **number of**_ `1`_**'s** in the binary representation of_ `i`.
6+
7+
**Example 1:**
8+
9+
**Input:** n = 2
10+
11+
**Output:** [0,1,1]
12+
13+
**Explanation:**
14+
15+
0 --> 0
16+
1 --> 1
17+
2 --> 10
18+
19+
**Example 2:**
20+
21+
**Input:** n = 5
22+
23+
**Output:** [0,1,1,2,1,2]
24+
25+
**Explanation:**
26+
27+
0 --> 0
28+
1 --> 1
29+
2 --> 10
30+
3 --> 11
31+
4 --> 100
32+
5 --> 101
33+
34+
**Constraints:**
35+
36+
* <code>0 <= n <= 10<sup>5</sup></code>
37+
38+
**Follow up:**
39+
40+
* It is very easy to come up with a solution with a runtime of `O(n log n)`. Can you do it in linear time `O(n)` and possibly in a single pass?
41+
* Can you do it without using any built-in function (i.e., like `__builtin_popcount` in C++)?
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// #Easy #Dynamic_Programming #Bit_Manipulation #Udemy_Bit_Manipulation
2+
// #Big_O_Time_O(num)_Space_O(num) #2024_12_22_Time_0_ms_(100.00%)_Space_57_MB_(33.09%)
3+
4+
/**
5+
* @param {number} n
6+
* @return {number[]}
7+
*/
8+
var countBits = function(num) {
9+
const result = new Array(num + 1).fill(0)
10+
let borderPos = 1
11+
let incrPos = 1
12+
13+
for (let i = 1; i <= num; i++) {
14+
// When we reach a power of 2, reset `borderPos` and `incrPos`
15+
if (incrPos === borderPos) {
16+
result[i] = 1
17+
incrPos = 1
18+
borderPos = i
19+
} else {
20+
result[i] = 1 + result[incrPos++]
21+
}
22+
}
23+
24+
return result
25+
}
26+
27+
export { countBits }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
347\. Top K Frequent Elements
2+
3+
Medium
4+
5+
Given an integer array `nums` and an integer `k`, return _the_ `k` _most frequent elements_. You may return the answer in **any order**.
6+
7+
**Example 1:**
8+
9+
**Input:** nums = [1,1,1,2,2,3], k = 2
10+
11+
**Output:** [1,2]
12+
13+
**Example 2:**
14+
15+
**Input:** nums = [1], k = 1
16+
17+
**Output:** [1]
18+
19+
**Constraints:**
20+
21+
* <code>1 <= nums.length <= 10<sup>5</sup></code>
22+
* <code>-10<sup>4</sup> <= nums[i] <= 10<sup>4</sup></code>
23+
* `k` is in the range `[1, the number of unique elements in the array]`.
24+
* It is **guaranteed** that the answer is **unique**.
25+
26+
**Follow up:** Your algorithm's time complexity must be better than `O(n log n)`, where n is the array's size.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// #Medium #Top_100_Liked_Questions #Array #Hash_Table #Sorting #Heap_Priority_Queue #Counting
2+
// #Divide_and_Conquer #Quickselect #Bucket_Sort #Data_Structure_II_Day_20_Heap_Priority_Queue
3+
// #Big_O_Time_O(n*log(n))_Space_O(k) #2024_12_22_Time_6_ms_(95.00%)_Space_54.3_MB_(53.50%)
4+
5+
/**
6+
* @param {number[]} nums
7+
* @param {number} k
8+
* @return {number[]}
9+
*/
10+
var topKFrequent = function (nums, k) {
11+
let obj = {}, result = []
12+
for (let item of nums) {
13+
obj[item] = (obj[item] ? obj[item] : 0) + 1
14+
}
15+
let temp = Object.entries(obj).sort((a, b) => b[1] - a[1])
16+
for (let i = 0; i < k; i++) {
17+
result.push(Number(temp[i][0]))
18+
}
19+
return result
20+
};
21+
22+
export { topKFrequent }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
394\. Decode String
2+
3+
Medium
4+
5+
Given an encoded string, return its decoded string.
6+
7+
The encoding rule is: `k[encoded_string]`, where the `encoded_string` inside the square brackets is being repeated exactly `k` times. Note that `k` is guaranteed to be a positive integer.
8+
9+
You may assume that the input string is always valid; there are no extra white spaces, square brackets are well-formed, etc. Furthermore, you may assume that the original data does not contain any digits and that digits are only for those repeat numbers, `k`. For example, there will not be input like `3a` or `2[4]`.
10+
11+
The test cases are generated so that the length of the output will never exceed <code>10<sup>5</sup></code>.
12+
13+
**Example 1:**
14+
15+
**Input:** s = "3[a]2[bc]"
16+
17+
**Output:** "aaabcbc"
18+
19+
**Example 2:**
20+
21+
**Input:** s = "3[a2[c]]"
22+
23+
**Output:** "accaccacc"
24+
25+
**Example 3:**
26+
27+
**Input:** s = "2[abc]3[cd]ef"
28+
29+
**Output:** "abcabccdcdcdef"
30+
31+
**Constraints:**
32+
33+
* `1 <= s.length <= 30`
34+
* `s` consists of lowercase English letters, digits, and square brackets `'[]'`.
35+
* `s` is guaranteed to be **a valid** input.
36+
* All the integers in `s` are in the range `[1, 300]`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
// #Medium #Top_100_Liked_Questions #String #Stack #Recursion #Level_1_Day_14_Stack #Udemy_Strings
2+
// #Big_O_Time_O(n)_Space_O(n) #2024_12_22_Time_0_ms_(100.00%)_Space_49.4_MB_(10.78%)
3+
4+
/**
5+
* @param {string} s
6+
* @return {string}
7+
*/
8+
var decodeString = function(s) {
9+
let i = 0
10+
11+
const helper = () => {
12+
let count = 0
13+
let sb = ''
14+
15+
while (i < s.length) {
16+
const c = s[i]
17+
i++
18+
19+
if (/[a-zA-Z]/.test(c)) {
20+
sb += c
21+
} else if (/\d/.test(c)) {
22+
count = count * 10 + Number(c)
23+
} else if (c === ']') {
24+
break
25+
} else if (c === '[') {
26+
// Recursive call for the substring
27+
const repeat = helper()
28+
while (count > 0) {
29+
sb += repeat
30+
count--
31+
}
32+
}
33+
}
34+
35+
return sb
36+
}
37+
38+
return helper()
39+
};
40+
41+
export { decodeString }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
416\. Partition Equal Subset Sum
2+
3+
Medium
4+
5+
Given a **non-empty** array `nums` containing **only positive integers**, find if the array can be partitioned into two subsets such that the sum of elements in both subsets is equal.
6+
7+
**Example 1:**
8+
9+
**Input:** nums = [1,5,11,5]
10+
11+
**Output:** true
12+
13+
**Explanation:** The array can be partitioned as [1, 5, 5] and [11].
14+
15+
**Example 2:**
16+
17+
**Input:** nums = [1,2,3,5]
18+
19+
**Output:** false
20+
21+
**Explanation:** The array cannot be partitioned into equal sum subsets.
22+
23+
**Constraints:**
24+
25+
* `1 <= nums.length <= 200`
26+
* `1 <= nums[i] <= 100`

0 commit comments

Comments
 (0)