You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,7 @@ LeetCode Problems' Solutions
54
54
55
55
| # | Title | Solution | Difficulty |
56
56
| :-: | - | - | :-: |
57
+
| <spanid="1127">1127</span> |[User Purchase Platform](https://leetcode.com/problems/user-purchase-platform) 🔒 |[MySQL](https://github.com/openset/leetcode/tree/master/problems/user-purchase-platform)| Hard |
57
58
| <spanid="1126">1126</span> |[Active Businesses](https://leetcode.com/problems/active-businesses) 🔒 |[MySQL](https://github.com/openset/leetcode/tree/master/problems/active-businesses)| Medium |
58
59
| <spanid="1125">1125</span> |[Smallest Sufficient Team](https://leetcode.com/problems/smallest-sufficient-team"最小的必要团队")|[Go](https://github.com/openset/leetcode/tree/master/problems/smallest-sufficient-team)| Hard |
59
60
| <spanid="1124">1124</span> |[Longest Well-Performing Interval](https://leetcode.com/problems/longest-well-performing-interval"表现良好的最长时间段")|[Go](https://github.com/openset/leetcode/tree/master/problems/longest-well-performing-interval)| Medium |
@@ -64,8 +65,8 @@ LeetCode Problems' Solutions
64
65
| <spanid="1119">1119</span> |[Remove Vowels from a String](https://leetcode.com/problems/remove-vowels-from-a-string"删去字符串中的元音") 🔒 |[Go](https://github.com/openset/leetcode/tree/master/problems/remove-vowels-from-a-string)| Easy |
65
66
| <spanid="1118">1118</span> |[Number of Days in a Month](https://leetcode.com/problems/number-of-days-in-a-month"一月有多少天") 🔒 |[Go](https://github.com/openset/leetcode/tree/master/problems/number-of-days-in-a-month)| Easy |
66
67
| <spanid="1117">1117</span> |[Building H2O](https://leetcode.com/problems/building-h2o"H2O 生成")|[Go](https://github.com/openset/leetcode/tree/master/problems/building-h2o)| Hard |
67
-
| <spanid="1116">1116</span> |[Print Zero Even Odd](https://leetcode.com/problems/print-zero-even-odd)|[Go](https://github.com/openset/leetcode/tree/master/problems/print-zero-even-odd)| Medium |
68
-
| <spanid="1115">1115</span> |[Print FooBar Alternately](https://leetcode.com/problems/print-foobar-alternately)|[Go](https://github.com/openset/leetcode/tree/master/problems/print-foobar-alternately)| Medium |
68
+
| <spanid="1116">1116</span> |[Print Zero Even Odd](https://leetcode.com/problems/print-zero-even-odd"打印零与奇偶数")|[Go](https://github.com/openset/leetcode/tree/master/problems/print-zero-even-odd)| Medium |
69
+
| <spanid="1115">1115</span> |[Print FooBar Alternately](https://leetcode.com/problems/print-foobar-alternately"交替打印FooBar")|[Go](https://github.com/openset/leetcode/tree/master/problems/print-foobar-alternately)| Medium |
69
70
| <spanid="1114">1114</span> |[Print in Order](https://leetcode.com/problems/print-in-order"按序打印")|[Go](https://github.com/openset/leetcode/tree/master/problems/print-in-order)| Easy |
| <spanid="1112">1112</span> |[Highest Grade For Each Student](https://leetcode.com/problems/highest-grade-for-each-student) 🔒 |[MySQL](https://github.com/openset/leetcode/tree/master/problems/highest-grade-for-each-student)| Medium |
Copy file name to clipboardExpand all lines: tag/bit-manipulation/README.md
+1
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 1125 |[最小的必要团队](https://github.com/openset/leetcode/tree/master/problems/smallest-sufficient-team)|[[位运算](https://github.com/openset/leetcode/tree/master/tag/bit-manipulation/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Hard |
12
13
| 898 |[子数组按位或操作](https://github.com/openset/leetcode/tree/master/problems/bitwise-ors-of-subarrays)|[[位运算](https://github.com/openset/leetcode/tree/master/tag/bit-manipulation/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/depth-first-search/README.md
+1
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 1123 |[最深叶节点的最近公共祖先](https://github.com/openset/leetcode/tree/master/problems/lowest-common-ancestor-of-deepest-leaves)|[[树](https://github.com/openset/leetcode/tree/master/tag/tree/README.md)][[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)]| Medium |
12
13
| 1102 |[得分最高的路径](https://github.com/openset/leetcode/tree/master/problems/path-with-maximum-minimum-value) 🔒 |[[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)][[并查集](https://github.com/openset/leetcode/tree/master/tag/union-find/README.md)][[图](https://github.com/openset/leetcode/tree/master/tag/graph/README.md)]| Medium |
13
14
| 1080 |[根到叶路径上的不足节点](https://github.com/openset/leetcode/tree/master/problems/insufficient-nodes-in-root-to-leaf-paths)|[[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)]| Medium |
14
15
| 1061 |[按字典序排列最小的等效字符串](https://github.com/openset/leetcode/tree/master/problems/lexicographically-smallest-equivalent-string) 🔒 |[[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)][[并查集](https://github.com/openset/leetcode/tree/master/tag/union-find/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/dynamic-programming/README.md
+1
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 1125 |[最小的必要团队](https://github.com/openset/leetcode/tree/master/problems/smallest-sufficient-team)|[[位运算](https://github.com/openset/leetcode/tree/master/tag/bit-manipulation/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Hard |
12
13
| 1105 |[填充书架](https://github.com/openset/leetcode/tree/master/problems/filling-bookcase-shelves)|[[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Medium |
13
14
| 1092 |[最短公共超序列](https://github.com/openset/leetcode/tree/master/problems/shortest-common-supersequence)|[[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Hard |
14
15
| 1074 |[元素和为目标值的子矩阵数量](https://github.com/openset/leetcode/tree/master/problems/number-of-submatrices-that-sum-to-target)|[[数组](https://github.com/openset/leetcode/tree/master/tag/array/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)][[Sliding Window](https://github.com/openset/leetcode/tree/master/tag/sliding-window/README.md)]| Hard |
Copy file name to clipboardExpand all lines: tag/math/README.md
+1
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 1121 |[将数组分成几个递增序列](https://github.com/openset/leetcode/tree/master/problems/divide-array-into-increasing-sequences) 🔒 |[[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)]| Hard |
12
13
| 1104 |[二叉树寻路](https://github.com/openset/leetcode/tree/master/problems/path-in-zigzag-labelled-binary-tree)|[[树](https://github.com/openset/leetcode/tree/master/tag/tree/README.md)][[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)]| Medium |
| 1093 |[大样本统计](https://github.com/openset/leetcode/tree/master/problems/statistics-from-a-large-sample)|[[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)][[双指针](https://github.com/openset/leetcode/tree/master/tag/two-pointers/README.md)]| Medium |
| 1057 |[校园自行车分配](https://github.com/openset/leetcode/tree/master/problems/campus-bikes) 🔒 |[[贪心算法](https://github.com/openset/leetcode/tree/master/tag/greedy/README.md)][[排序](https://github.com/openset/leetcode/tree/master/tag/sort/README.md)]| Medium |
14
15
| 1054 |[距离相等的条形码](https://github.com/openset/leetcode/tree/master/problems/distant-barcodes)|[[堆](https://github.com/openset/leetcode/tree/master/tag/heap/README.md)][[排序](https://github.com/openset/leetcode/tree/master/tag/sort/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/stack/README.md
+1
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 1124 |[表现良好的最长时间段](https://github.com/openset/leetcode/tree/master/problems/longest-well-performing-interval)|[[栈](https://github.com/openset/leetcode/tree/master/tag/stack/README.md)]| Medium |
12
13
| 1063 |[有效子数组的数目](https://github.com/openset/leetcode/tree/master/problems/number-of-valid-subarrays) 🔒 |[[栈](https://github.com/openset/leetcode/tree/master/tag/stack/README.md)]| Hard |
| 1106 |[解析布尔表达式](https://github.com/openset/leetcode/tree/master/problems/parsing-a-boolean-expression)|[[字符串](https://github.com/openset/leetcode/tree/master/tag/string/README.md)]| Hard |
13
14
| 1100 |[长度为 K 的无重复字符子串](https://github.com/openset/leetcode/tree/master/problems/find-k-length-substrings-with-no-repeated-characters) 🔒 |[[字符串](https://github.com/openset/leetcode/tree/master/tag/string/README.md)][[Sliding Window](https://github.com/openset/leetcode/tree/master/tag/sliding-window/README.md)]| Medium |
14
15
| 1096 |[花括号展开 II](https://github.com/openset/leetcode/tree/master/problems/brace-expansion-ii)|[[字符串](https://github.com/openset/leetcode/tree/master/tag/string/README.md)]| Hard |
Copy file name to clipboardExpand all lines: tag/tree/README.md
+2
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 1123 |[最深叶节点的最近公共祖先](https://github.com/openset/leetcode/tree/master/problems/lowest-common-ancestor-of-deepest-leaves)|[[树](https://github.com/openset/leetcode/tree/master/tag/tree/README.md)][[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)]| Medium |
13
+
| 1120 |[子树的最大平均值](https://github.com/openset/leetcode/tree/master/problems/maximum-average-subtree) 🔒 |[[树](https://github.com/openset/leetcode/tree/master/tag/tree/README.md)]| Medium |
12
14
| 1104 |[二叉树寻路](https://github.com/openset/leetcode/tree/master/problems/path-in-zigzag-labelled-binary-tree)|[[树](https://github.com/openset/leetcode/tree/master/tag/tree/README.md)][[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)]| Medium |
13
15
| 1028 |[从先序遍历还原二叉树](https://github.com/openset/leetcode/tree/master/problems/recover-a-tree-from-preorder-traversal)|[[树](https://github.com/openset/leetcode/tree/master/tag/tree/README.md)][[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)]| Hard |
14
16
| 1026 |[节点与其祖先之间的最大差值](https://github.com/openset/leetcode/tree/master/problems/maximum-difference-between-node-and-ancestor)|[[树](https://github.com/openset/leetcode/tree/master/tag/tree/README.md)][[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)]| Medium |
0 commit comments