@@ -21,28 +21,28 @@ weight: 5
21
21
| 0032| Longest Valid Parentheses| [ Go] ({{< relref "/ChapterFour/0001~ 0099/0032.Longest-Valid-Parentheses.md" >}})| Hard|||| 30.2%|
22
22
| 0042| Trapping Rain Water| [ Go] ({{< relref "/ChapterFour/0001~ 0099/0042.Trapping-Rain-Water.md" >}})| Hard| O(n)| O(1)| ❤️| 52.4%|
23
23
| 0071| Simplify Path| [ Go] ({{< relref "/ChapterFour/0001~ 0099/0071.Simplify-Path.md" >}})| Medium| O(n)| O(n)| ❤️| 35.4%|
24
- | 0084| Largest Rectangle in Histogram| [ Go] ({{< relref "/ChapterFour/0001~ 0099/0084.Largest-Rectangle-in-Histogram.md" >}})| Hard| O(n)| O(n)| ❤️| 38.0 %|
25
- | 0094| Binary Tree Inorder Traversal| [ Go] ({{< relref "/ChapterFour/0001~ 0099/0094.Binary-Tree-Inorder-Traversal.md" >}})| Easy| O(n)| O(1)|| 67.2 %|
24
+ | 0084| Largest Rectangle in Histogram| [ Go] ({{< relref "/ChapterFour/0001~ 0099/0084.Largest-Rectangle-in-Histogram.md" >}})| Hard| O(n)| O(n)| ❤️| 38.1 %|
25
+ | 0094| Binary Tree Inorder Traversal| [ Go] ({{< relref "/ChapterFour/0001~ 0099/0094.Binary-Tree-Inorder-Traversal.md" >}})| Easy| O(n)| O(1)|| 67.3 %|
26
26
| 0114| Flatten Binary Tree to Linked List| [ Go] ({{< relref "/ChapterFour/0100~ 0199/0114.Flatten-Binary-Tree-to-Linked-List.md" >}})| Medium|||| 54.0%|
27
- | 0143| Reorder List| [ Go] ({{< relref "/ChapterFour/0100~ 0199/0143.Reorder-List.md" >}})| Medium|||| 42.1 %|
27
+ | 0143| Reorder List| [ Go] ({{< relref "/ChapterFour/0100~ 0199/0143.Reorder-List.md" >}})| Medium|||| 42.2 %|
28
28
| 0144| Binary Tree Preorder Traversal| [ Go] ({{< relref "/ChapterFour/0100~ 0199/0144.Binary-Tree-Preorder-Traversal.md" >}})| Easy| O(n)| O(1)|| 58.7%|
29
29
| 0145| Binary Tree Postorder Traversal| [ Go] ({{< relref "/ChapterFour/0100~ 0199/0145.Binary-Tree-Postorder-Traversal.md" >}})| Easy| O(n)| O(1)|| 59.2%|
30
30
| 0150| Evaluate Reverse Polish Notation| [ Go] ({{< relref "/ChapterFour/0100~ 0199/0150.Evaluate-Reverse-Polish-Notation.md" >}})| Medium| O(n)| O(1)|| 39.7%|
31
31
| 0155| Min Stack| [ Go] ({{< relref "/ChapterFour/0100~ 0199/0155.Min-Stack.md" >}})| Easy| O(n)| O(n)|| 47.4%|
32
32
| 0173| Binary Search Tree Iterator| [ Go] ({{< relref "/ChapterFour/0100~ 0199/0173.Binary-Search-Tree-Iterator.md" >}})| Medium| O(n)| O(1)|| 61.6%|
33
33
| 0224| Basic Calculator| [ Go] ({{< relref "/ChapterFour/0200~ 0299/0224.Basic-Calculator.md" >}})| Hard| O(n)| O(n)|| 38.6%|
34
- | 0225| Implement Stack using Queues| [ Go] ({{< relref "/ChapterFour/0200~ 0299/0225.Implement-Stack-using-Queues.md" >}})| Easy| O(n)| O(n)|| 48.7 %|
34
+ | 0225| Implement Stack using Queues| [ Go] ({{< relref "/ChapterFour/0200~ 0299/0225.Implement-Stack-using-Queues.md" >}})| Easy| O(n)| O(n)|| 48.8 %|
35
35
| 0227| Basic Calculator II| [ Go] ({{< relref "/ChapterFour/0200~ 0299/0227.Basic-Calculator-II.md" >}})| Medium|||| 39.2%|
36
- | 0232| Implement Queue using Stacks| [ Go] ({{< relref "/ChapterFour/0200~ 0299/0232.Implement-Queue-using-Stacks.md" >}})| Easy| O(n)| O(n)|| 53.5 %|
37
- | 0234| Palindrome Linked List| [ Go] ({{< relref "/ChapterFour/0200~ 0299/0234.Palindrome-Linked-List.md" >}})| Easy|||| 43.1 %|
38
- | 0331| Verify Preorder Serialization of a Binary Tree| [ Go] ({{< relref "/ChapterFour/0300~ 0399/0331.Verify-Preorder-Serialization-of-a-Binary-Tree.md" >}})| Medium| O(n)| O(1)|| 41.3 %|
36
+ | 0232| Implement Queue using Stacks| [ Go] ({{< relref "/ChapterFour/0200~ 0299/0232.Implement-Queue-using-Stacks.md" >}})| Easy| O(n)| O(n)|| 53.6 %|
37
+ | 0234| Palindrome Linked List| [ Go] ({{< relref "/ChapterFour/0200~ 0299/0234.Palindrome-Linked-List.md" >}})| Easy|||| 43.2 %|
38
+ | 0331| Verify Preorder Serialization of a Binary Tree| [ Go] ({{< relref "/ChapterFour/0300~ 0399/0331.Verify-Preorder-Serialization-of-a-Binary-Tree.md" >}})| Medium| O(n)| O(1)|| 41.4 %|
39
39
| 0341| Flatten Nested List Iterator| [ Go] ({{< relref "/ChapterFour/0300~ 0399/0341.Flatten-Nested-List-Iterator.md" >}})| Medium|||| 56.5%|
40
40
| 0385| Mini Parser| [ Go] ({{< relref "/ChapterFour/0300~ 0399/0385.Mini-Parser.md" >}})| Medium|||| 34.9%|
41
41
| 0394| Decode String| [ Go] ({{< relref "/ChapterFour/0300~ 0399/0394.Decode-String.md" >}})| Medium| O(n)| O(n)|| 53.6%|
42
42
| 0402| Remove K Digits| [ Go] ({{< relref "/ChapterFour/0400~ 0499/0402.Remove-K-Digits.md" >}})| Medium| O(n)| O(1)|| 28.8%|
43
43
| 0445| Add Two Numbers II| [ Go] ({{< relref "/ChapterFour/0400~ 0499/0445.Add-Two-Numbers-II.md" >}})| Medium|||| 57.0%|
44
44
| 0456| 132 Pattern| [ Go] ({{< relref "/ChapterFour/0400~ 0499/0456.132-Pattern.md" >}})| Medium| O(n)| O(n)|| 30.7%|
45
- | 0496| Next Greater Element I| [ Go] ({{< relref "/ChapterFour/0400~ 0499/0496.Next-Greater-Element-I.md" >}})| Easy| O(n)| O(n)|| 66.5 %|
45
+ | 0496| Next Greater Element I| [ Go] ({{< relref "/ChapterFour/0400~ 0499/0496.Next-Greater-Element-I.md" >}})| Easy| O(n)| O(n)|| 66.6 %|
46
46
| 0503| Next Greater Element II| [ Go] ({{< relref "/ChapterFour/0500~ 0599/0503.Next-Greater-Element-II.md" >}})| Medium| O(n)| O(n)|| 59.4%|
47
47
| 0581| Shortest Unsorted Continuous Subarray| [ Go] ({{< relref "/ChapterFour/0500~ 0599/0581.Shortest-Unsorted-Continuous-Subarray.md" >}})| Medium|||| 33.2%|
48
48
| 0589| N-ary Tree Preorder Traversal| [ Go] ({{< relref "/ChapterFour/0500~ 0599/0589.N-ary-Tree-Preorder-Traversal.md" >}})| Easy|||| 74.7%|
@@ -52,7 +52,7 @@ weight: 5
52
52
| 0735| Asteroid Collision| [ Go] ({{< relref "/ChapterFour/0700~ 0799/0735.Asteroid-Collision.md" >}})| Medium| O(n)| O(n) || 43.5%|
53
53
| 0739| Daily Temperatures| [ Go] ({{< relref "/ChapterFour/0700~ 0799/0739.Daily-Temperatures.md" >}})| Medium| O(n)| O(n) || 65.3%|
54
54
| 0844| Backspace String Compare| [ Go] ({{< relref "/ChapterFour/0800~ 0899/0844.Backspace-String-Compare.md" >}})| Easy| O(n)| O(n) || 47.2%|
55
- | 0856| Score of Parentheses| [ Go] ({{< relref "/ChapterFour/0800~ 0899/0856.Score-of-Parentheses.md" >}})| Medium| O(n)| O(n)|| 65.0 %|
55
+ | 0856| Score of Parentheses| [ Go] ({{< relref "/ChapterFour/0800~ 0899/0856.Score-of-Parentheses.md" >}})| Medium| O(n)| O(n)|| 65.1 %|
56
56
| 0880| Decoded String at Index| [ Go] ({{< relref "/ChapterFour/0800~ 0899/0880.Decoded-String-at-Index.md" >}})| Medium| O(n)| O(n)|| 28.2%|
57
57
| 0895| Maximum Frequency Stack| [ Go] ({{< relref "/ChapterFour/0800~ 0899/0895.Maximum-Frequency-Stack.md" >}})| Hard| O(n)| O(n) || 63.6%|
58
58
| 0897| Increasing Order Search Tree| [ Go] ({{< relref "/ChapterFour/0800~ 0899/0897.Increasing-Order-Search-Tree.md" >}})| Easy|||| 75.0%|
@@ -64,15 +64,15 @@ weight: 5
64
64
| 1006| Clumsy Factorial| [ Go] ({{< relref "/ChapterFour/1000~ 1099/1006.Clumsy-Factorial.md" >}})| Medium|||| 54.1%|
65
65
| 1019| Next Greater Node In Linked List| [ Go] ({{< relref "/ChapterFour/1000~ 1099/1019.Next-Greater-Node-In-Linked-List.md" >}})| Medium| O(n)| O(1)|| 58.4%|
66
66
| 1021| Remove Outermost Parentheses| [ Go] ({{< relref "/ChapterFour/1000~ 1099/1021.Remove-Outermost-Parentheses.md" >}})| Easy| O(n)| O(1)|| 79.3%|
67
- | 1047| Remove All Adjacent Duplicates In String| [ Go] ({{< relref "/ChapterFour/1000~ 1099/1047.Remove-All-Adjacent-Duplicates-In-String.md" >}})| Easy| O(n)| O(1)|| 71.8 %|
67
+ | 1047| Remove All Adjacent Duplicates In String| [ Go] ({{< relref "/ChapterFour/1000~ 1099/1047.Remove-All-Adjacent-Duplicates-In-String.md" >}})| Easy| O(n)| O(1)|| 71.6 %|
68
68
| 1111| Maximum Nesting Depth of Two Valid Parentheses Strings| [ Go] ({{< relref "/ChapterFour/1100~ 1199/1111.Maximum-Nesting-Depth-of-Two-Valid-Parentheses-Strings.md" >}})| Medium|||| 72.7%|
69
69
| 1190| Reverse Substrings Between Each Pair of Parentheses| [ Go] ({{< relref "/ChapterFour/1100~ 1199/1190.Reverse-Substrings-Between-Each-Pair-of-Parentheses.md" >}})| Medium|||| 64.7%|
70
70
| 1209| Remove All Adjacent Duplicates in String II| [ Go] ({{< relref "/ChapterFour/1200~ 1299/1209.Remove-All-Adjacent-Duplicates-in-String-II.md" >}})| Medium|||| 57.0%|
71
71
| 1249| Minimum Remove to Make Valid Parentheses| [ Go] ({{< relref "/ChapterFour/1200~ 1299/1249.Minimum-Remove-to-Make-Valid-Parentheses.md" >}})| Medium|||| 64.5%|
72
72
| 1614| Maximum Nesting Depth of the Parentheses| [ Go] ({{< relref "/ChapterFour/1600~ 1699/1614.Maximum-Nesting-Depth-of-the-Parentheses.md" >}})| Easy|||| 82.6%|
73
73
| 1653| Minimum Deletions to Make String Balanced| [ Go] ({{< relref "/ChapterFour/1600~ 1699/1653.Minimum-Deletions-to-Make-String-Balanced.md" >}})| Medium|||| 52.4%|
74
74
| 1673| Find the Most Competitive Subsequence| [ Go] ({{< relref "/ChapterFour/1600~ 1699/1673.Find-the-Most-Competitive-Subsequence.md" >}})| Medium|||| 45.9%|
75
- | 1700| Number of Students Unable to Eat Lunch| [ Go] ({{< relref "/ChapterFour/1700~ 1799/1700.Number-of-Students-Unable-to-Eat-Lunch.md" >}})| Easy|||| 67.6 %|
75
+ | 1700| Number of Students Unable to Eat Lunch| [ Go] ({{< relref "/ChapterFour/1700~ 1799/1700.Number-of-Students-Unable-to-Eat-Lunch.md" >}})| Easy|||| 67.7 %|
76
76
| ------------| -------------------------------------------------------| -------| ----------------| ---------------| -------------| -------------| -------------|
77
77
78
78
0 commit comments