Skip to content

Commit ab2e947

Browse files
authored
Added tasks 438-1143
1 parent d4245f0 commit ab2e947

File tree

25 files changed

+673
-0
lines changed

25 files changed

+673
-0
lines changed

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
139139

140140
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
141141
|-|-|-|-|-|-
142+
| 0438 |[Find All Anagrams in a String](src/main/js/g0401_0500/s0438_find_all_anagrams_in_a_string/solution.js)| Medium | Top_100_Liked_Questions, String, Hash_Table, Sliding_Window, Big_O_Time_O(n+m)_Space_O(1) | 5 | 99.89
142143

143144
#### Day 6 Breadth First Search Depth First Search
144145

@@ -211,6 +212,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
211212

212213
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
213214
|-|-|-|-|-|-
215+
| 1143 |[Longest Common Subsequence](src/main/js/g1101_1200/s1143_longest_common_subsequence/solution.js)| Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n\*m)_Space_O(n\*m) | 28 | 90.92
214216

215217
#### Day 18 Dynamic Programming
216218

@@ -517,6 +519,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
517519

518520
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
519521
|-|-|-|-|-|-
522+
| 1143 |[Longest Common Subsequence](src/main/js/g1101_1200/s1143_longest_common_subsequence/solution.js)| Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n\*m)_Space_O(n\*m) | 28 | 90.92
520523
| 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
521524

522525
#### Day 20
@@ -625,6 +628,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
625628

626629
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
627630
|-|-|-|-|-|-
631+
| 0739 |[Daily Temperatures](src/main/js/g0701_0800/s0739_daily_temperatures/solution.js)| Medium | Top_100_Liked_Questions, Array, Stack, Monotonic_Stack, Big_O_Time_O(n)_Space_O(n) | 9 | 99.89
628632

629633
#### Day 7
630634

@@ -657,6 +661,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
657661

658662
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
659663
|-|-|-|-|-|-
664+
| 0438 |[Find All Anagrams in a String](src/main/js/g0401_0500/s0438_find_all_anagrams_in_a_string/solution.js)| Medium | Top_100_Liked_Questions, String, Hash_Table, Sliding_Window, Big_O_Time_O(n+m)_Space_O(1) | 5 | 99.89
660665

661666
#### Day 13
662667

@@ -896,6 +901,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
896901

897902
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
898903
|-|-|-|-|-|-
904+
| 0438 |[Find All Anagrams in a String](src/main/js/g0401_0500/s0438_find_all_anagrams_in_a_string/solution.js)| Medium | Top_100_Liked_Questions, String, Hash_Table, Sliding_Window, Big_O_Time_O(n+m)_Space_O(1) | 5 | 99.89
899905

900906
#### Day 13 Hashmap
901907

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

955961
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
956962
|-|-|-|-|-|-
963+
| 0543 |[Diameter of Binary Tree](src/main/js/g0501_0600/s0543_diameter_of_binary_tree/solution.js)| Easy | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(n)_Space_O(n) | 1 | 87.35
957964
| 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
958965

959966
#### Day 8 Binary Search
@@ -1127,6 +1134,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
11271134
|-|-|-|-|-|-
11281135
| 0094 |[Binary Tree Inorder Traversal](src/main/js/g0001_0100/s0094_binary_tree_inorder_traversal/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
11291136
| 0102 |[Binary Tree Level Order Traversal](src/main/js/g0101_0200/s0102_binary_tree_level_order_traversal/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_Space_O(N) | 1 | 87.97
1137+
| 0543 |[Diameter of Binary Tree](src/main/js/g0501_0600/s0543_diameter_of_binary_tree/solution.js)| Easy | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(n)_Space_O(n) | 1 | 87.35
11301138
| 0226 |[Invert Binary Tree](src/main/js/g0201_0300/s0226_invert_binary_tree/solution.js)| Easy | Top_100_Liked_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
11311139
| 0104 |[Maximum Depth of Binary Tree](src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_Space_O(H) | 0 | 100.00
11321140
| 0124 |[Binary Tree Maximum Path Sum](src/main/js/g0101_0200/s0124_binary_tree_maximum_path_sum/solution.js)| Hard | Top_100_Liked_Questions, Top_Interview_Questions, Dynamic_Programming, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_Space_O(N) | 1 | 98.34
@@ -1155,6 +1163,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
11551163
| 0070 |[Climbing Stairs](src/main/js/g0001_0100/s0070_climbing_stairs/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Dynamic_Programming, Math, Memoization, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
11561164
| 0064 |[Minimum Path Sum](src/main/js/g0001_0100/s0064_minimum_path_sum/solution.js)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Matrix, Big_O_Time_O(m\*n)_Space_O(m\*n) | 3 | 83.07
11571165
| 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, Big_O_Time_O(n\*log_n)_Space_O(n) | 4 | 93.09
1166+
| 1143 |[Longest Common Subsequence](src/main/js/g1101_1200/s1143_longest_common_subsequence/solution.js)| Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n\*m)_Space_O(n\*m) | 28 | 90.92
11581167
| 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
11591168
| 0010 |[Regular Expression Matching](src/main/js/g0001_0100/s0010_regular_expression_matching/solution.js)| Hard | Top_Interview_Questions, String, Dynamic_Programming, Recursion, Big_O_Time_O(m\*n)_Space_O(m\*n) | 4 | 95.52
11601169

@@ -1300,6 +1309,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
13001309
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
13011310
|-|-|-|-|-|-
13021311
| 0238 |[Product of Array Except Self](src/main/js/g0201_0300/s0238_product_of_array_except_self/solution.js)| Medium | Top_100_Liked_Questions, Array, Prefix_Sum, Big_O_Time_O(n^2)_Space_O(n) | 3 | 93.60
1312+
| 0560 |[Subarray Sum Equals K](src/main/js/g0501_0600/s0560_subarray_sum_equals_k/solution.js)| Medium | Top_100_Liked_Questions, Array, Hash_Table, Prefix_Sum, Big_O_Time_O(n)_Space_O(n) | 9 | 99.38
13031313

13041314
#### Day 6 String
13051315

@@ -1310,6 +1320,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
13101320

13111321
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
13121322
|-|-|-|-|-|-
1323+
| 0763 |[Partition Labels](src/main/js/g0701_0800/s0763_partition_labels/solution.js)| Medium | String, Hash_Table, Greedy, Two_Pointers, Big_O_Time_O(n)_Space_O(1) | 3 | 94.02
13131324

13141325
#### Day 8 String
13151326

@@ -1398,6 +1409,14 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
13981409

13991410
| # | Title | Difficulty | Tag | Time, ms | Time, %
14001411
|------|----------------|-------------|-------------|----------|---------
1412+
| 1143 |[Longest Common Subsequence](src/main/js/g1101_1200/s1143_longest_common_subsequence/solution.js)| Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Algorithm_II_Day_17_Dynamic_Programming, Dynamic_Programming_I_Day_19, Udemy_Dynamic_Programming, Big_O_Time_O(n\*m)_Space_O(n\*m) | 28 | 90.92
1413+
| 0763 |[Partition Labels](src/main/js/g0701_0800/s0763_partition_labels/solution.js)| Medium | String, Hash_Table, Greedy, Two_Pointers, Data_Structure_II_Day_7_String, Big_O_Time_O(n)_Space_O(1) | 3 | 94.02
1414+
| 0739 |[Daily Temperatures](src/main/js/g0701_0800/s0739_daily_temperatures/solution.js)| Medium | Top_100_Liked_Questions, Array, Stack, Monotonic_Stack, Programming_Skills_II_Day_6, Big_O_Time_O(n)_Space_O(n) | 9 | 99.89
1415+
| 0647 |[Palindromic Substrings](src/main/js/g0601_0700/s0647_palindromic_substrings/solution.js)| Medium | String, Dynamic_Programming, Big_O_Time_O(n^2)_Space_O(n) | 3 | 99.10
1416+
| 0560 |[Subarray Sum Equals K](src/main/js/g0501_0600/s0560_subarray_sum_equals_k/solution.js)| Medium | Top_100_Liked_Questions, Array, Hash_Table, Prefix_Sum, Data_Structure_II_Day_5_Array, Big_O_Time_O(n)_Space_O(n) | 9 | 99.38
1417+
| 0543 |[Diameter of Binary Tree](src/main/js/g0501_0600/s0543_diameter_of_binary_tree/solution.js)| Easy | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Level_2_Day_7_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(n)_Space_O(n) | 1 | 87.35
1418+
| 0494 |[Target Sum](src/main/js/g0401_0500/s0494_target_sum/solution.js)| Medium | Array, Dynamic_Programming, Backtracking, Big_O_Time_O(n\*(sum+s))_Space_O(n\*(sum+s)) | 2 | 99.66
1419+
| 0438 |[Find All Anagrams in a String](src/main/js/g0401_0500/s0438_find_all_anagrams_in_a_string/solution.js)| Medium | Top_100_Liked_Questions, String, Hash_Table, Sliding_Window, Algorithm_II_Day_5_Sliding_Window, Programming_Skills_II_Day_12, Level_1_Day_12_Sliding_Window/Two_Pointer, Big_O_Time_O(n+m)_Space_O(1) | 5 | 99.89
14011420
| 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
14021421
| 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
14031422
| 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
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
438\. Find All Anagrams in a String
2+
3+
Medium
4+
5+
Given two strings `s` and `p`, return _an array of all the start indices of_ `p`_'s anagrams in_ `s`. You may return the answer in **any order**.
6+
7+
An **Anagram** is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.
8+
9+
**Example 1:**
10+
11+
**Input:** s = "cbaebabacd", p = "abc"
12+
13+
**Output:** [0,6]
14+
15+
**Explanation:**
16+
17+
The substring with start index = 0 is "cba", which is an anagram of "abc".
18+
19+
The substring with start index = 6 is "bac", which is an anagram of "abc".
20+
21+
**Example 2:**
22+
23+
**Input:** s = "abab", p = "ab"
24+
25+
**Output:** [0,1,2]
26+
27+
**Explanation:**
28+
29+
The substring with start index = 0 is "ab", which is an anagram of "ab".
30+
31+
The substring with start index = 1 is "ba", which is an anagram of "ab".
32+
33+
The substring with start index = 2 is "ab", which is an anagram of "ab".
34+
35+
**Constraints:**
36+
37+
* <code>1 <= s.length, p.length <= 3 * 10<sup>4</sup></code>
38+
* `s` and `p` consist of lowercase English letters.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
// #Medium #Top_100_Liked_Questions #String #Hash_Table #Sliding_Window
2+
// #Algorithm_II_Day_5_Sliding_Window #Programming_Skills_II_Day_12
3+
// #Level_1_Day_12_Sliding_Window/Two_Pointer #Big_O_Time_O(n+m)_Space_O(1)
4+
// #2024_12_24_Time_5_ms_(99.89%)_Space_52.4_MB_(99.43%)
5+
6+
/**
7+
* @param {string} s
8+
* @param {string} p
9+
* @return {number[]}
10+
*/
11+
var findAnagrams = function(s, p) {
12+
const map = new Array(26).fill(0)
13+
for (let i = 0; i < p.length; i++) {
14+
map[p.charCodeAt(i) - 'a'.charCodeAt(0)]++
15+
}
16+
17+
const res = []
18+
let i = 0
19+
let j = 0
20+
21+
while (i < s.length) {
22+
const idx = s.charCodeAt(i) - 'a'.charCodeAt(0)
23+
// Add the new character
24+
map[idx]--
25+
26+
// If the length is greater than the window's length, pop the left character
27+
if (i >= p.length) {
28+
map[s.charCodeAt(j++) - 'a'.charCodeAt(0)]++
29+
}
30+
31+
let finish = true
32+
for (let k = 0; k < 26; k++) {
33+
// If it's not an anagram of string p
34+
if (map[k] !== 0) {
35+
finish = false
36+
break
37+
}
38+
}
39+
40+
if (i >= p.length - 1 && finish) {
41+
res.push(j)
42+
}
43+
i++
44+
}
45+
46+
return res
47+
};
48+
49+
export { findAnagrams }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
494\. Target Sum
2+
3+
Medium
4+
5+
You are given an integer array `nums` and an integer `target`.
6+
7+
You want to build an **expression** out of nums by adding one of the symbols `'+'` and `'-'` before each integer in nums and then concatenate all the integers.
8+
9+
* For example, if `nums = [2, 1]`, you can add a `'+'` before `2` and a `'-'` before `1` and concatenate them to build the expression `"+2-1"`.
10+
11+
Return the number of different **expressions** that you can build, which evaluates to `target`.
12+
13+
**Example 1:**
14+
15+
**Input:** nums = [1,1,1,1,1], target = 3
16+
17+
**Output:** 5
18+
19+
**Explanation:** There are 5 ways to assign symbols to make the sum of nums be target 3.
20+
21+
-1 + 1 + 1 + 1 + 1 = 3
22+
23+
+1 - 1 + 1 + 1 + 1 = 3
24+
25+
+1 + 1 - 1 + 1 + 1 = 3
26+
27+
+1 + 1 + 1 - 1 + 1 = 3
28+
29+
+1 + 1 + 1 + 1 - 1 = 3
30+
31+
**Example 2:**
32+
33+
**Input:** nums = [1], target = 1
34+
35+
**Output:** 1
36+
37+
**Constraints:**
38+
39+
* `1 <= nums.length <= 20`
40+
* `0 <= nums[i] <= 1000`
41+
* `0 <= sum(nums[i]) <= 1000`
42+
* `-1000 <= target <= 1000`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// #Medium #Array #Dynamic_Programming #Backtracking #Big_O_Time_O(n*(sum+s))_Space_O(n*(sum+s))
2+
// #2024_12_24_Time_2_ms_(99.66%)_Space_51.5_MB_(61.90%)
3+
4+
/**
5+
* @param {number[]} nums
6+
* @param {number} target
7+
* @return {number}
8+
*/
9+
var findTargetSumWays = function(nums, target) {
10+
const n = nums.length
11+
let totalSum = 0
12+
for (let i = 0; i < n; i++) {
13+
totalSum += nums[i]
14+
}
15+
16+
const sum = totalSum - target
17+
if (sum < 0 || sum % 2 === 1) {
18+
return 0
19+
}
20+
21+
const targetSum = Math.floor(sum / 2)
22+
23+
// Helper function to solve the problem
24+
const solve = (nums, target) => {
25+
let prev = new Array(target + 1).fill(0)
26+
27+
if (nums[0] === 0) {
28+
prev[0] = 2 // Two ways to form sum 0: +0 and -0
29+
} else {
30+
prev[0] = 1
31+
}
32+
33+
if (nums[0] !== 0 && nums[0] <= target) {
34+
prev[nums[0]] = 1
35+
}
36+
37+
for (let i = 1; i < nums.length; i++) {
38+
const curr = new Array(target + 1).fill(0)
39+
for (let j = 0; j <= target; j++) {
40+
const taken = j >= nums[i] ? prev[j - nums[i]] : 0
41+
const nonTaken = prev[j]
42+
curr[j] = taken + nonTaken
43+
}
44+
prev = curr
45+
}
46+
47+
return prev[target]
48+
}
49+
50+
return solve(nums, targetSum)
51+
};
52+
53+
export { findTargetSumWays }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
543\. Diameter of Binary Tree
2+
3+
Easy
4+
5+
Given the `root` of a binary tree, return _the length of the **diameter** of the tree_.
6+
7+
The **diameter** of a binary tree is the **length** of the longest path between any two nodes in a tree. This path may or may not pass through the `root`.
8+
9+
The **length** of a path between two nodes is represented by the number of edges between them.
10+
11+
**Example 1:**
12+
13+
![](https://assets.leetcode.com/uploads/2021/03/06/diamtree.jpg)
14+
15+
**Input:** root = [1,2,3,4,5]
16+
17+
**Output:** 3
18+
19+
**Explanation:** 3 is the length of the path [4,2,1,3] or [5,2,1,3].
20+
21+
**Example 2:**
22+
23+
**Input:** root = [1,2]
24+
25+
**Output:** 1
26+
27+
**Constraints:**
28+
29+
* The number of nodes in the tree is in the range <code>[1, 10<sup>4</sup>]</code>.
30+
* `-100 <= Node.val <= 100`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// #Easy #Top_100_Liked_Questions #Depth_First_Search #Tree #Binary_Tree #Level_2_Day_7_Tree
2+
// #Udemy_Tree_Stack_Queue #Big_O_Time_O(n)_Space_O(n)
3+
// #2024_12_24_Time_1_ms_(87.35%)_Space_57.4_MB_(27.26%)
4+
5+
/**
6+
* Definition for a binary tree node.
7+
* function TreeNode(val, left, right) {
8+
* this.val = (val===undefined ? 0 : val)
9+
* this.left = (left===undefined ? null : left)
10+
* this.right = (right===undefined ? null : right)
11+
* }
12+
*/
13+
/**
14+
* @param {TreeNode} root
15+
* @return {number}
16+
*/
17+
var diameterOfBinaryTree = function(root) {
18+
let diameter = 0
19+
20+
const diameterOfBinaryTreeUtil = (node) => {
21+
if (node === null) {
22+
return 0
23+
}
24+
25+
const leftLength = node.left ? 1 + diameterOfBinaryTreeUtil(node.left) : 0
26+
const rightLength = node.right ? 1 + diameterOfBinaryTreeUtil(node.right) : 0
27+
28+
// Update the diameter
29+
diameter = Math.max(diameter, leftLength + rightLength)
30+
31+
// Return the longest path from this node
32+
return Math.max(leftLength, rightLength)
33+
}
34+
35+
diameterOfBinaryTreeUtil(root)
36+
return diameter
37+
};
38+
39+
export { diameterOfBinaryTree }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
560\. Subarray Sum Equals K
2+
3+
Medium
4+
5+
Given an array of integers `nums` and an integer `k`, return _the total number of subarrays whose sum equals to_ `k`.
6+
7+
A subarray is a contiguous **non-empty** sequence of elements within an array.
8+
9+
**Example 1:**
10+
11+
**Input:** nums = [1,1,1], k = 2
12+
13+
**Output:** 2
14+
15+
**Example 2:**
16+
17+
**Input:** nums = [1,2,3], k = 3
18+
19+
**Output:** 2
20+
21+
**Constraints:**
22+
23+
* <code>1 <= nums.length <= 2 * 10<sup>4</sup></code>
24+
* `-1000 <= nums[i] <= 1000`
25+
* <code>-10<sup>7</sup> <= k <= 10<sup>7</sup></code>

0 commit comments

Comments
 (0)