Skip to content

Commit 4dd8e60

Browse files
committed
Update to 1150.
1 parent 5c8e29e commit 4dd8e60

File tree

2 files changed

+83
-2
lines changed

2 files changed

+83
-2
lines changed

README-CN.md

+42-1
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,51 @@
1717

1818
Note: 所有的讲解写在了 GitHub Issue 上面, **请不要在本项目中新建任何的 Issue 或者 Pull Request,因为博主希望题目编号和 Issue 编号保持一致**,多谢!
1919

20-
('$' 代表锁住的题目, '*' 代表数据库类题目, '#' 代表脚本类题目。)
20+
('$' 代表锁住的题目, '*' 代表数据库类题目, '#' 代表脚本类题目, '~' 代表并行类题目。)
2121

2222

2323
| # | Title | Solution | Difficulty |
2424
|---| ----- | -------- | ---------- |
25+
|1150|Check If a Number Is Majority Element in a Sorted Array $|57.10%|Easy|
26+
|1149|Article Views II * $|48.20%|Medium|
27+
|1148|Article Views I * $|77.10%|Easy|
28+
|1147|[Longest Chunked Palindrome Decomposition](https://github.com/grandyang/leetcode/issues/1147)|59.80%|Hard|
29+
|1146|[Snapshot Array](https://github.com/grandyang/leetcode/issues/1146)|37.00%|Medium|
30+
|1145|[Binary Tree Coloring Game](https://github.com/grandyang/leetcode/issues/1145)|51.10%|Medium|
31+
|1144|[Decrease Elements To Make Array Zigzag](https://github.com/grandyang/leetcode/issues/1144)|46.50%|Medium|
32+
|1143|[Longest Common Subsequence](https://github.com/grandyang/leetcode/issues/1143)|58.80%|Medium|
33+
|1142|User Activity for the Past 30 Days II * $|35.50%|Easy|
34+
|1141|User Activity for the Past 30 Days I * $|54.60%|Easy|
35+
|1140|[Stone Game II](https://github.com/grandyang/leetcode/issues/1140)|64.60%|Medium|
36+
|1139|[Largest 1-Bordered Square](https://github.com/grandyang/leetcode/issues/1139)|48.70%|Medium|
37+
|1138|[Alphabet Board Path](https://github.com/grandyang/leetcode/issues/1138)|51.60%|Medium|
38+
|1137|[N-th Tribonacci Number](https://github.com/grandyang/leetcode/issues/1137)|55.70%|Easy|
39+
|1136|Parallel Courses $|60.70%|Medium|
40+
|1135|Connecting Cities With Minimum Cost $|60.00%|Easy|
41+
|1134|Armstrong Number $|78.50%|Easy|
42+
|1133|Largest Unique Number $|67.20%|Easy|
43+
|1132|Reported Posts II * $|34.40%|Medium|
44+
|1131|[Maximum of Absolute Value Expression](https://github.com/grandyang/leetcode/issues/1131)|51.30%|Medium|
45+
|1130|[Minimum Cost Tree From Leaf Values](https://github.com/grandyang/leetcode/issues/1130)|67.40%|Medium|
46+
|1129|[Shortest Path with Alternating Colors](https://github.com/grandyang/leetcode/issues/1129)|40.70%|Medium|
47+
|1128|[Number of Equivalent Domino Pairs](https://github.com/grandyang/leetcode/issues/1128)|45.90%|Easy|
48+
|1127|User Purchase Platform * $|50.80%|Hard|
49+
|1126|Active Businesses * $|68.40%|Medium|
50+
|1125|[Smallest Sufficient Team](https://github.com/grandyang/leetcode/issues/1125)|47.20%|Hard|
51+
|1124|[Longest Well-Performing Interval](https://github.com/grandyang/leetcode/issues/1124)|33.50%|Medium|
52+
|1123|[Lowest Common Ancestor of Deepest Leaves](https://github.com/grandyang/leetcode/issues/1123)|68.50%|Medium|
53+
|1122|[Relative Sort Array](https://github.com/grandyang/leetcode/issues/1122)|67.90%|Easy|
54+
|1121|Divide Array Into Increasing Sequences $|59.00%|Hard|
55+
|1120|Maximum Average Subtree $|64.50%|Medium|
56+
|1119|Remove Vowels from a String $|90.50%|Easy|
57+
|1118|Number of Days in a Month $|57.30%|Easy|
58+
|1117|Building H2O ~|53.10%|Medium|
59+
|1116|Print Zero Even Odd ~|58.20%|Medium|
60+
|1115|Print FooBar Alternately ~|59.00%|Medium|
61+
|1114|Print in Order ~|67.60%|Easy|
62+
|1113|Reported Posts * $|66.40%|Medium|
63+
|1112|Highest Grade For Each Student * $|72.80%|Medium|
64+
|1111|[Maximum Nesting Depth of Two Valid Parentheses Strings](https://github.com/grandyang/leetcode/issues/1111)|72.70%|Medium|
2565
|1110|[Delete Nodes And Return Forest](https://github.com/grandyang/leetcode/issues/1110)|68.00%|Medium|
2666
|1109|[Corporate Flight Bookings](https://github.com/grandyang/leetcode/issues/1109)|54.30%|Medium|
2767
|1108|[Defanging an IP Address](https://github.com/grandyang/leetcode/issues/1108)|88.40%|Easy|
@@ -1133,6 +1173,7 @@ Note: 所有的讲解写在了 GitHub Issue 上面, **请不要在本项目中
11331173

11341174

11351175

1176+
11361177
<br>
11371178

11381179
## 微信公众号

README.md

+41-1
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,52 @@ Same as this: [LeetCode All in One 题目讲解汇总(持续更新中...)](https
1717

1818
Note: All explanations are written in Github Issues, **please do not create any new issue or pull request in this project since the problem index should be consistent with the issue index**, thanks!
1919

20-
('$' means the problem is locked on Leetcode, '*' means the problem is related to Database, '#' means the problem is related to Shell.)
20+
('$' means the problem is locked on Leetcode, '*' means the problem is related to Database, '#' means the problem is related to Shell, '~' means the concurrency problems.)
2121

2222

2323

2424
| # | Title | Solution | Difficulty |
2525
|---| ----- | -------- | ---------- |
26+
|1150|Check If a Number Is Majority Element in a Sorted Array $|57.10%|Easy|
27+
|1149|Article Views II * $|48.20%|Medium|
28+
|1148|Article Views I * $|77.10%|Easy|
29+
|1147|[Longest Chunked Palindrome Decomposition](https://github.com/grandyang/leetcode/issues/1147)|59.80%|Hard|
30+
|1146|[Snapshot Array](https://github.com/grandyang/leetcode/issues/1146)|37.00%|Medium|
31+
|1145|[Binary Tree Coloring Game](https://github.com/grandyang/leetcode/issues/1145)|51.10%|Medium|
32+
|1144|[Decrease Elements To Make Array Zigzag](https://github.com/grandyang/leetcode/issues/1144)|46.50%|Medium|
33+
|1143|[Longest Common Subsequence](https://github.com/grandyang/leetcode/issues/1143)|58.80%|Medium|
34+
|1142|User Activity for the Past 30 Days II * $|35.50%|Easy|
35+
|1141|User Activity for the Past 30 Days I * $|54.60%|Easy|
36+
|1140|[Stone Game II](https://github.com/grandyang/leetcode/issues/1140)|64.60%|Medium|
37+
|1139|[Largest 1-Bordered Square](https://github.com/grandyang/leetcode/issues/1139)|48.70%|Medium|
38+
|1138|[Alphabet Board Path](https://github.com/grandyang/leetcode/issues/1138)|51.60%|Medium|
39+
|1137|[N-th Tribonacci Number](https://github.com/grandyang/leetcode/issues/1137)|55.70%|Easy|
40+
|1136|Parallel Courses $|60.70%|Medium|
41+
|1135|Connecting Cities With Minimum Cost $|60.00%|Easy|
42+
|1134|Armstrong Number $|78.50%|Easy|
43+
|1133|Largest Unique Number $|67.20%|Easy|
44+
|1132|Reported Posts II * $|34.40%|Medium|
45+
|1131|[Maximum of Absolute Value Expression](https://github.com/grandyang/leetcode/issues/1131)|51.30%|Medium|
46+
|1130|[Minimum Cost Tree From Leaf Values](https://github.com/grandyang/leetcode/issues/1130)|67.40%|Medium|
47+
|1129|[Shortest Path with Alternating Colors](https://github.com/grandyang/leetcode/issues/1129)|40.70%|Medium|
48+
|1128|[Number of Equivalent Domino Pairs](https://github.com/grandyang/leetcode/issues/1128)|45.90%|Easy|
49+
|1127|User Purchase Platform * $|50.80%|Hard|
50+
|1126|Active Businesses * $|68.40%|Medium|
51+
|1125|[Smallest Sufficient Team](https://github.com/grandyang/leetcode/issues/1125)|47.20%|Hard|
52+
|1124|[Longest Well-Performing Interval](https://github.com/grandyang/leetcode/issues/1124)|33.50%|Medium|
53+
|1123|[Lowest Common Ancestor of Deepest Leaves](https://github.com/grandyang/leetcode/issues/1123)|68.50%|Medium|
54+
|1122|[Relative Sort Array](https://github.com/grandyang/leetcode/issues/1122)|67.90%|Easy|
55+
|1121|Divide Array Into Increasing Sequences $|59.00%|Hard|
56+
|1120|Maximum Average Subtree $|64.50%|Medium|
57+
|1119|Remove Vowels from a String $|90.50%|Easy|
58+
|1118|Number of Days in a Month $|57.30%|Easy|
59+
|1117|Building H2O ~|53.10%|Medium|
60+
|1116|Print Zero Even Odd ~|58.20%|Medium|
61+
|1115|Print FooBar Alternately ~|59.00%|Medium|
62+
|1114|Print in Order ~|67.60%|Easy|
63+
|1113|Reported Posts * $|66.40%|Medium|
64+
|1112|Highest Grade For Each Student * $|72.80%|Medium|
65+
|1111|[Maximum Nesting Depth of Two Valid Parentheses Strings](https://github.com/grandyang/leetcode/issues/1111)|72.70%|Medium|
2666
|1110|[Delete Nodes And Return Forest](https://github.com/grandyang/leetcode/issues/1110)|68.00%|Medium|
2767
|1109|[Corporate Flight Bookings](https://github.com/grandyang/leetcode/issues/1109)|54.30%|Medium|
2868
|1108|[Defanging an IP Address](https://github.com/grandyang/leetcode/issues/1108)|88.40%|Easy|

0 commit comments

Comments
 (0)