Skip to content

Commit 7075b0d

Browse files
authored
Added tasks 79-98
1 parent 567ec73 commit 7075b0d

File tree

17 files changed

+456
-0
lines changed

17 files changed

+456
-0
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
167167
|-|-|-|-|-|-
168168
| 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
169169
| 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
170+
| 0079 |[Word Search](src/main/js/g0001_0100/s0079_word_search/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Matrix, Backtracking, Big_O_Time_O(4^(m\*n))_Space_O(m\*n) | 292 | 83.26
170171

171172
#### Day 12 Dynamic Programming
172173

@@ -452,6 +453,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
452453

453454
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
454455
|-|-|-|-|-|-
456+
| 0096 |[Unique Binary Search Trees](src/main/js/g0001_0100/s0096_unique_binary_search_trees/solution.js)| Medium | Dynamic_Programming, Math, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
455457

456458
#### Day 12
457459

@@ -840,6 +842,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
840842

841843
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
842844
|-|-|-|-|-|-
845+
| 0098 |[Validate Binary Search Tree](src/main/js/g0001_0100/s0098_validate_binary_search_tree/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(N)_Space_O(log(N)) | 0 | 100.00
843846

844847
#### Day 9 Graph/BFS/DFS
845848

@@ -1061,6 +1064,8 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10611064

10621065
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10631066
|-|-|-|-|-|-
1067+
| 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
1068+
| 0098 |[Validate Binary Search Tree](src/main/js/g0001_0100/s0098_validate_binary_search_tree/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(N)_Space_O(log(N)) | 0 | 100.00
10641069

10651070
#### Udemy Trie and Heap
10661071

@@ -1157,6 +1162,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
11571162

11581163
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11591164
|-|-|-|-|-|-
1165+
| 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
11601166

11611167
#### Day 11 Tree
11621168

@@ -1177,6 +1183,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
11771183

11781184
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11791185
|-|-|-|-|-|-
1186+
| 0098 |[Validate Binary Search Tree](src/main/js/g0001_0100/s0098_validate_binary_search_tree/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(N)_Space_O(log(N)) | 0 | 100.00
11801187

11811188
### Data Structure II
11821189

@@ -1298,6 +1305,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
12981305

12991306
| # | Title | Difficulty | Tag | Time, ms | Time, %
13001307
|------|----------------|-------------|-------------|----------|---------
1308+
| 0098 |[Validate Binary Search Tree](src/main/js/g0001_0100/s0098_validate_binary_search_tree/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Data_Structure_I_Day_14_Tree, Level_1_Day_8_Binary_Search_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(N)_Space_O(log(N)) | 0 | 100.00
1309+
| 0096 |[Unique Binary Search Trees](src/main/js/g0001_0100/s0096_unique_binary_search_trees/solution.js)| Medium | Dynamic_Programming, Math, Tree, Binary_Tree, Binary_Search_Tree, Dynamic_Programming_I_Day_11, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
1310+
| 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, Data_Structure_I_Day_10_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
1311+
| 0084 |[Largest Rectangle in Histogram](src/main/js/g0001_0100/s0084_largest_rectangle_in_histogram/solution.js)| Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Stack, Monotonic_Stack, Big_O_Time_O(n_log_n)_Space_O(log_n) | 11 | 96.58
1312+
| 0079 |[Word Search](src/main/js/g0001_0100/s0079_word_search/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Matrix, Backtracking, Algorithm_II_Day_11_Recursion_Backtracking, Big_O_Time_O(4^(m\*n))_Space_O(m\*n) | 292 | 83.26
13011313
| 0078 |[Subsets](src/main/js/g0001_0100/s0078_subsets/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Bit_Manipulation, Backtracking, Algorithm_II_Day_9_Recursion_Backtracking, Udemy_Backtracking/Recursion, Big_O_Time_O(2^n)_Space_O(n\*2^n) | 0 | 100.00
13021314
| 0076 |[Minimum Window Substring](src/main/js/g0001_0100/s0076_minimum_window_substring/solution.js)| Hard | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Sliding_Window, Level_2_Day_14_Sliding_Window/Two_Pointer, Big_O_Time_O(s.length())_Space_O(1) | 4 | 99.86
13031315
| 0075 |[Sort Colors](src/main/js/g0001_0100/s0075_sort_colors/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Two_Pointers, Data_Structure_II_Day_2_Array, Udemy_Arrays, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
class TreeNode {
2+
constructor(val = 0, left = null, right = null) {
3+
this.val = val
4+
this.left = left
5+
this.right = right
6+
}
7+
};
8+
9+
function createTreeNode(treeValues) {
10+
if (treeValues.length === 0) return null
11+
12+
const root = new TreeNode(treeValues[0])
13+
const queue = [root]
14+
let i = 1
15+
16+
while (i < treeValues.length) {
17+
const curr = queue.shift()
18+
if (treeValues[i] !== null) {
19+
curr.left = new TreeNode(treeValues[i])
20+
queue.push(curr.left)
21+
}
22+
i++
23+
if (i < treeValues.length && treeValues[i] !== null) {
24+
curr.right = new TreeNode(treeValues[i])
25+
queue.push(curr.right)
26+
}
27+
i++
28+
}
29+
30+
return root
31+
};
32+
33+
export { TreeNode, createTreeNode }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
79\. Word Search
2+
3+
Medium
4+
5+
Given an `m x n` grid of characters `board` and a string `word`, return `true` _if_ `word` _exists in the grid_.
6+
7+
The word can be constructed from letters of sequentially adjacent cells, where adjacent cells are horizontally or vertically neighboring. The same letter cell may not be used more than once.
8+
9+
**Example 1:**
10+
11+
![](https://assets.leetcode.com/uploads/2020/11/04/word2.jpg)
12+
13+
**Input:** board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "ABCCED"
14+
15+
**Output:** true
16+
17+
**Example 2:**
18+
19+
![](https://assets.leetcode.com/uploads/2020/11/04/word-1.jpg)
20+
21+
**Input:** board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "SEE"
22+
23+
**Output:** true
24+
25+
**Example 3:**
26+
27+
![](https://assets.leetcode.com/uploads/2020/10/15/word3.jpg)
28+
29+
**Input:** board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "ABCB"
30+
31+
**Output:** false
32+
33+
**Constraints:**
34+
35+
* `m == board.length`
36+
* `n = board[i].length`
37+
* `1 <= m, n <= 6`
38+
* `1 <= word.length <= 15`
39+
* `board` and `word` consists of only lowercase and uppercase English letters.
40+
41+
**Follow up:** Could you use search pruning to make your solution faster with a larger `board`?
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Array #Matrix #Backtracking
2+
// #Algorithm_II_Day_11_Recursion_Backtracking #Big_O_Time_O(4^(m*n))_Space_O(m*n)
3+
// #2024_12_12_Time_292_ms_(83.26%)_Space_49.6_MB_(62.55%)
4+
5+
/**
6+
* @param {character[][]} board
7+
* @param {string} word
8+
* @return {boolean}
9+
*/
10+
var exist = function (board, word) {
11+
let visited = Array.from({ length: board.length }, () => Array(board[0].length).fill(0)),
12+
m = board.length, n = board[0].length, isMatch = false
13+
const dfs = (i, j, match) => {
14+
visited[i][j] = 1
15+
if (match == word.length) {
16+
isMatch = true
17+
return
18+
}
19+
let x = [1, -1, 0, 0], y = [0, 0, 1, -1]
20+
for (let k = 0; k < 4; k++) {
21+
let xx = x[k] + i, yy = y[k] + j
22+
if (xx >= 0 && yy >= 0 && xx < m && yy < n && visited[xx][yy] != 1 && board[xx][yy] == word[match]) {
23+
dfs(xx, yy, match + 1)
24+
visited[xx][yy] = 0
25+
}
26+
}
27+
}
28+
for (let i = 0; i < board.length; i++) {
29+
for (let j = 0; j < board[0].length; j++) {
30+
if (board[i][j] == word[0]) {
31+
dfs(i, j, 1)
32+
if (isMatch) {
33+
return true
34+
}
35+
visited = Array.from({ length: board.length }, () => Array(board[0].length).fill(0))
36+
37+
}
38+
}
39+
}
40+
return isMatch
41+
};
42+
43+
export { exist }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
84\. Largest Rectangle in Histogram
2+
3+
Hard
4+
5+
Given an array of integers `heights` representing the histogram's bar height where the width of each bar is `1`, return _the area of the largest rectangle in the histogram_.
6+
7+
**Example 1:**
8+
9+
![](https://assets.leetcode.com/uploads/2021/01/04/histogram.jpg)
10+
11+
**Input:** heights = [2,1,5,6,2,3]
12+
13+
**Output:** 10
14+
15+
**Explanation:** The above is a histogram where width of each bar is 1.
16+
17+
The largest rectangle is shown in the red area, which has an area = 10 units.
18+
19+
**Example 2:**
20+
21+
![](https://assets.leetcode.com/uploads/2021/01/04/histogram-1.jpg)
22+
23+
**Input:** heights = [2,4]
24+
25+
**Output:** 4
26+
27+
**Constraints:**
28+
29+
* <code>1 <= heights.length <= 10<sup>5</sup></code>
30+
* <code>0 <= heights[i] <= 10<sup>4</sup></code>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// #Hard #Top_100_Liked_Questions #Top_Interview_Questions #Array #Stack #Monotonic_Stack
2+
// #Big_O_Time_O(n_log_n)_Space_O(log_n) #2024_12_12_Time_11_ms_(96.58%)_Space_61.2_MB_(84.95%)
3+
4+
/**
5+
* @param {number[]} heights
6+
* @return {number}
7+
*/
8+
var largestRectangleArea = function(heights) {
9+
let stack = []
10+
let maxArea = 0
11+
let index = 0
12+
13+
while (index < heights.length) {
14+
if (stack.length === 0 || heights[stack[stack.length - 1]] <= heights[index]) {
15+
stack.push(index++)
16+
} else {
17+
let top = stack.pop()
18+
let area = heights[top] * (stack.length === 0 ? index : index - stack[stack.length - 1] - 1)
19+
maxArea = Math.max(maxArea, area)
20+
}
21+
}
22+
23+
while (stack.length > 0) {
24+
let top = stack.pop()
25+
let area = heights[top] * (stack.length === 0 ? index : index - stack[stack.length - 1] - 1)
26+
maxArea = Math.max(maxArea, area)
27+
}
28+
29+
return maxArea
30+
};
31+
32+
export { largestRectangleArea }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
94\. Binary Tree Inorder Traversal
2+
3+
Easy
4+
5+
Given the `root` of a binary tree, return _the inorder traversal of its nodes' values_.
6+
7+
**Example 1:**
8+
9+
![](https://assets.leetcode.com/uploads/2020/09/15/inorder_1.jpg)
10+
11+
**Input:** root = [1,null,2,3]
12+
13+
**Output:** [1,3,2]
14+
15+
**Example 2:**
16+
17+
**Input:** root = []
18+
19+
**Output:** []
20+
21+
**Example 3:**
22+
23+
**Input:** root = [1]
24+
25+
**Output:** [1]
26+
27+
**Example 4:**
28+
29+
![](https://assets.leetcode.com/uploads/2020/09/15/inorder_5.jpg)
30+
31+
**Input:** root = [1,2]
32+
33+
**Output:** [2,1]
34+
35+
**Example 5:**
36+
37+
![](https://assets.leetcode.com/uploads/2020/09/15/inorder_4.jpg)
38+
39+
**Input:** root = [1,null,2]
40+
41+
**Output:** [1,2]
42+
43+
**Constraints:**
44+
45+
* The number of nodes in the tree is in the range `[0, 100]`.
46+
* `-100 <= Node.val <= 100`
47+
48+
**Follow up:** Recursive solution is trivial, could you do it iteratively?
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// #Easy #Top_100_Liked_Questions #Top_Interview_Questions #Depth_First_Search #Tree #Binary_Tree
2+
// #Stack #Data_Structure_I_Day_10_Tree #Udemy_Tree_Stack_Queue #Big_O_Time_O(n)_Space_O(n)
3+
// #2024_12_12_Time_0_ms_(100.00%)_Space_49.4_MB_(12.74%)
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 inorderTraversal = function(root) {
18+
if (root === null) {
19+
return []
20+
}
21+
const answer = []
22+
traverseInOrder(root, answer)
23+
return answer
24+
};
25+
26+
var traverseInOrder = function(root, answer) {
27+
if (root === null) {
28+
return
29+
}
30+
if (root.left !== null) {
31+
traverseInOrder(root.left, answer)
32+
}
33+
answer.push(root.val)
34+
if (root.right !== null) {
35+
traverseInOrder(root.right, answer)
36+
}
37+
};
38+
39+
export { inorderTraversal }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
96\. Unique Binary Search Trees
2+
3+
Medium
4+
5+
Given an integer `n`, return _the number of structurally unique **BST'**s (binary search trees) which has exactly_ `n` _nodes of unique values from_ `1` _to_ `n`.
6+
7+
**Example 1:**
8+
9+
![](https://assets.leetcode.com/uploads/2021/01/18/uniquebstn3.jpg)
10+
11+
**Input:** n = 3
12+
13+
**Output:** 5
14+
15+
**Example 2:**
16+
17+
**Input:** n = 1
18+
19+
**Output:** 1
20+
21+
**Constraints:**
22+
23+
* `1 <= n <= 19`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// #Medium #Dynamic_Programming #Math #Tree #Binary_Tree #Binary_Search_Tree
2+
// #Dynamic_Programming_I_Day_11 #Big_O_Time_O(n)_Space_O(1)
3+
// #2024_12_12_Time_0_ms_(100.00%)_Space_48.8_MB_(65.65%)
4+
5+
/**
6+
* @param {number} n
7+
* @return {number}
8+
*/
9+
var numTrees = function (n) {
10+
let result = 1
11+
12+
for (let i = 0; i < n; i++) {
13+
result *= 2 * n - i
14+
result /= i + 1
15+
}
16+
17+
result /= n + 1
18+
return Math.floor(result)
19+
};
20+
21+
export { numTrees }

0 commit comments

Comments
 (0)