Created
April 22, 2021 08:30
-
-
Save ficapy/52f66a42e7fc1897dcd500c6ea365426 to your computer and use it in GitHub Desktop.
open leetcode with the serial number
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"os" | |
"os/exec" | |
"strconv" | |
"strings" | |
) | |
/* | |
let ret = [] | |
document.querySelectorAll('.reactable-data tr').forEach(item => { | |
let id = item.querySelector('td:nth-child(2)').innerText; | |
let url = item.querySelector('td:nth-child(3) a').href; | |
ret.push(`${id},${url}`); | |
}) | |
console.log(ret.join("\n")) | |
*/ | |
var record = `363,https://leetcode-cn.com/problems/max-sum-of-rectangle-no-larger-than-k | |
1,https://leetcode-cn.com/problems/two-sum | |
2,https://leetcode-cn.com/problems/add-two-numbers | |
3,https://leetcode-cn.com/problems/longest-substring-without-repeating-characters | |
4,https://leetcode-cn.com/problems/median-of-two-sorted-arrays | |
5,https://leetcode-cn.com/problems/longest-palindromic-substring | |
6,https://leetcode-cn.com/problems/zigzag-conversion | |
7,https://leetcode-cn.com/problems/reverse-integer | |
8,https://leetcode-cn.com/problems/string-to-integer-atoi | |
9,https://leetcode-cn.com/problems/palindrome-number | |
10,https://leetcode-cn.com/problems/regular-expression-matching | |
11,https://leetcode-cn.com/problems/container-with-most-water | |
12,https://leetcode-cn.com/problems/integer-to-roman | |
13,https://leetcode-cn.com/problems/roman-to-integer | |
14,https://leetcode-cn.com/problems/longest-common-prefix | |
15,https://leetcode-cn.com/problems/3sum | |
16,https://leetcode-cn.com/problems/3sum-closest | |
17,https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number | |
18,https://leetcode-cn.com/problems/4sum | |
19,https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list | |
20,https://leetcode-cn.com/problems/valid-parentheses | |
21,https://leetcode-cn.com/problems/merge-two-sorted-lists | |
22,https://leetcode-cn.com/problems/generate-parentheses | |
23,https://leetcode-cn.com/problems/merge-k-sorted-lists | |
24,https://leetcode-cn.com/problems/swap-nodes-in-pairs | |
25,https://leetcode-cn.com/problems/reverse-nodes-in-k-group | |
26,https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array | |
27,https://leetcode-cn.com/problems/remove-element | |
28,https://leetcode-cn.com/problems/implement-strstr | |
29,https://leetcode-cn.com/problems/divide-two-integers | |
30,https://leetcode-cn.com/problems/substring-with-concatenation-of-all-words | |
31,https://leetcode-cn.com/problems/next-permutation | |
32,https://leetcode-cn.com/problems/longest-valid-parentheses | |
33,https://leetcode-cn.com/problems/search-in-rotated-sorted-array | |
34,https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array | |
35,https://leetcode-cn.com/problems/search-insert-position | |
36,https://leetcode-cn.com/problems/valid-sudoku | |
37,https://leetcode-cn.com/problems/sudoku-solver | |
38,https://leetcode-cn.com/problems/count-and-say | |
39,https://leetcode-cn.com/problems/combination-sum | |
40,https://leetcode-cn.com/problems/combination-sum-ii | |
41,https://leetcode-cn.com/problems/first-missing-positive | |
42,https://leetcode-cn.com/problems/trapping-rain-water | |
43,https://leetcode-cn.com/problems/multiply-strings | |
44,https://leetcode-cn.com/problems/wildcard-matching | |
45,https://leetcode-cn.com/problems/jump-game-ii | |
46,https://leetcode-cn.com/problems/permutations | |
47,https://leetcode-cn.com/problems/permutations-ii | |
48,https://leetcode-cn.com/problems/rotate-image | |
49,https://leetcode-cn.com/problems/group-anagrams | |
50,https://leetcode-cn.com/problems/powx-n | |
51,https://leetcode-cn.com/problems/n-queens | |
52,https://leetcode-cn.com/problems/n-queens-ii | |
53,https://leetcode-cn.com/problems/maximum-subarray | |
54,https://leetcode-cn.com/problems/spiral-matrix | |
55,https://leetcode-cn.com/problems/jump-game | |
56,https://leetcode-cn.com/problems/merge-intervals | |
57,https://leetcode-cn.com/problems/insert-interval | |
58,https://leetcode-cn.com/problems/length-of-last-word | |
59,https://leetcode-cn.com/problems/spiral-matrix-ii | |
60,https://leetcode-cn.com/problems/permutation-sequence | |
61,https://leetcode-cn.com/problems/rotate-list | |
62,https://leetcode-cn.com/problems/unique-paths | |
63,https://leetcode-cn.com/problems/unique-paths-ii | |
64,https://leetcode-cn.com/problems/minimum-path-sum | |
65,https://leetcode-cn.com/problems/valid-number | |
66,https://leetcode-cn.com/problems/plus-one | |
67,https://leetcode-cn.com/problems/add-binary | |
68,https://leetcode-cn.com/problems/text-justification | |
69,https://leetcode-cn.com/problems/sqrtx | |
70,https://leetcode-cn.com/problems/climbing-stairs | |
71,https://leetcode-cn.com/problems/simplify-path | |
72,https://leetcode-cn.com/problems/edit-distance | |
73,https://leetcode-cn.com/problems/set-matrix-zeroes | |
74,https://leetcode-cn.com/problems/search-a-2d-matrix | |
75,https://leetcode-cn.com/problems/sort-colors | |
76,https://leetcode-cn.com/problems/minimum-window-substring | |
77,https://leetcode-cn.com/problems/combinations | |
78,https://leetcode-cn.com/problems/subsets | |
79,https://leetcode-cn.com/problems/word-search | |
80,https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array-ii | |
81,https://leetcode-cn.com/problems/search-in-rotated-sorted-array-ii | |
82,https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list-ii | |
83,https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list | |
84,https://leetcode-cn.com/problems/largest-rectangle-in-histogram | |
85,https://leetcode-cn.com/problems/maximal-rectangle | |
86,https://leetcode-cn.com/problems/partition-list | |
87,https://leetcode-cn.com/problems/scramble-string | |
88,https://leetcode-cn.com/problems/merge-sorted-array | |
89,https://leetcode-cn.com/problems/gray-code | |
90,https://leetcode-cn.com/problems/subsets-ii | |
91,https://leetcode-cn.com/problems/decode-ways | |
92,https://leetcode-cn.com/problems/reverse-linked-list-ii | |
93,https://leetcode-cn.com/problems/restore-ip-addresses | |
94,https://leetcode-cn.com/problems/binary-tree-inorder-traversal | |
95,https://leetcode-cn.com/problems/unique-binary-search-trees-ii | |
96,https://leetcode-cn.com/problems/unique-binary-search-trees | |
97,https://leetcode-cn.com/problems/interleaving-string | |
98,https://leetcode-cn.com/problems/validate-binary-search-tree | |
99,https://leetcode-cn.com/problems/recover-binary-search-tree | |
100,https://leetcode-cn.com/problems/same-tree | |
101,https://leetcode-cn.com/problems/symmetric-tree | |
102,https://leetcode-cn.com/problems/binary-tree-level-order-traversal | |
103,https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal | |
104,https://leetcode-cn.com/problems/maximum-depth-of-binary-tree | |
105,https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal | |
106,https://leetcode-cn.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal | |
107,https://leetcode-cn.com/problems/binary-tree-level-order-traversal-ii | |
108,https://leetcode-cn.com/problems/convert-sorted-array-to-binary-search-tree | |
109,https://leetcode-cn.com/problems/convert-sorted-list-to-binary-search-tree | |
110,https://leetcode-cn.com/problems/balanced-binary-tree | |
111,https://leetcode-cn.com/problems/minimum-depth-of-binary-tree | |
112,https://leetcode-cn.com/problems/path-sum | |
113,https://leetcode-cn.com/problems/path-sum-ii | |
114,https://leetcode-cn.com/problems/flatten-binary-tree-to-linked-list | |
115,https://leetcode-cn.com/problems/distinct-subsequences | |
116,https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node | |
117,https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node-ii | |
118,https://leetcode-cn.com/problems/pascals-triangle | |
119,https://leetcode-cn.com/problems/pascals-triangle-ii | |
120,https://leetcode-cn.com/problems/triangle | |
121,https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock | |
122,https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii | |
123,https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-iii | |
124,https://leetcode-cn.com/problems/binary-tree-maximum-path-sum | |
125,https://leetcode-cn.com/problems/valid-palindrome | |
126,https://leetcode-cn.com/problems/word-ladder-ii | |
127,https://leetcode-cn.com/problems/word-ladder | |
128,https://leetcode-cn.com/problems/longest-consecutive-sequence | |
129,https://leetcode-cn.com/problems/sum-root-to-leaf-numbers | |
130,https://leetcode-cn.com/problems/surrounded-regions | |
131,https://leetcode-cn.com/problems/palindrome-partitioning | |
132,https://leetcode-cn.com/problems/palindrome-partitioning-ii | |
133,https://leetcode-cn.com/problems/clone-graph | |
134,https://leetcode-cn.com/problems/gas-station | |
135,https://leetcode-cn.com/problems/candy | |
136,https://leetcode-cn.com/problems/single-number | |
137,https://leetcode-cn.com/problems/single-number-ii | |
138,https://leetcode-cn.com/problems/copy-list-with-random-pointer | |
139,https://leetcode-cn.com/problems/word-break | |
140,https://leetcode-cn.com/problems/word-break-ii | |
141,https://leetcode-cn.com/problems/linked-list-cycle | |
142,https://leetcode-cn.com/problems/linked-list-cycle-ii | |
143,https://leetcode-cn.com/problems/reorder-list | |
144,https://leetcode-cn.com/problems/binary-tree-preorder-traversal | |
145,https://leetcode-cn.com/problems/binary-tree-postorder-traversal | |
146,https://leetcode-cn.com/problems/lru-cache | |
147,https://leetcode-cn.com/problems/insertion-sort-list | |
148,https://leetcode-cn.com/problems/sort-list | |
149,https://leetcode-cn.com/problems/max-points-on-a-line | |
150,https://leetcode-cn.com/problems/evaluate-reverse-polish-notation | |
151,https://leetcode-cn.com/problems/reverse-words-in-a-string | |
152,https://leetcode-cn.com/problems/maximum-product-subarray | |
153,https://leetcode-cn.com/problems/find-minimum-in-rotated-sorted-array | |
154,https://leetcode-cn.com/problems/find-minimum-in-rotated-sorted-array-ii | |
155,https://leetcode-cn.com/problems/min-stack | |
156,https://leetcode-cn.com/problems/binary-tree-upside-down | |
157,https://leetcode-cn.com/problems/read-n-characters-given-read4 | |
158,https://leetcode-cn.com/problems/read-n-characters-given-read4-ii-call-multiple-times | |
159,https://leetcode-cn.com/problems/longest-substring-with-at-most-two-distinct-characters | |
160,https://leetcode-cn.com/problems/intersection-of-two-linked-lists | |
161,https://leetcode-cn.com/problems/one-edit-distance | |
162,https://leetcode-cn.com/problems/find-peak-element | |
163,https://leetcode-cn.com/problems/missing-ranges | |
164,https://leetcode-cn.com/problems/maximum-gap | |
165,https://leetcode-cn.com/problems/compare-version-numbers | |
166,https://leetcode-cn.com/problems/fraction-to-recurring-decimal | |
167,https://leetcode-cn.com/problems/two-sum-ii-input-array-is-sorted | |
168,https://leetcode-cn.com/problems/excel-sheet-column-title | |
169,https://leetcode-cn.com/problems/majority-element | |
170,https://leetcode-cn.com/problems/two-sum-iii-data-structure-design | |
171,https://leetcode-cn.com/problems/excel-sheet-column-number | |
172,https://leetcode-cn.com/problems/factorial-trailing-zeroes | |
173,https://leetcode-cn.com/problems/binary-search-tree-iterator | |
174,https://leetcode-cn.com/problems/dungeon-game | |
175,https://leetcode-cn.com/problems/combine-two-tables | |
176,https://leetcode-cn.com/problems/second-highest-salary | |
177,https://leetcode-cn.com/problems/nth-highest-salary | |
178,https://leetcode-cn.com/problems/rank-scores | |
179,https://leetcode-cn.com/problems/largest-number | |
180,https://leetcode-cn.com/problems/consecutive-numbers | |
181,https://leetcode-cn.com/problems/employees-earning-more-than-their-managers | |
182,https://leetcode-cn.com/problems/duplicate-emails | |
183,https://leetcode-cn.com/problems/customers-who-never-order | |
184,https://leetcode-cn.com/problems/department-highest-salary | |
185,https://leetcode-cn.com/problems/department-top-three-salaries | |
186,https://leetcode-cn.com/problems/reverse-words-in-a-string-ii | |
187,https://leetcode-cn.com/problems/repeated-dna-sequences | |
188,https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-iv | |
189,https://leetcode-cn.com/problems/rotate-array | |
190,https://leetcode-cn.com/problems/reverse-bits | |
191,https://leetcode-cn.com/problems/number-of-1-bits | |
192,https://leetcode-cn.com/problems/word-frequency | |
193,https://leetcode-cn.com/problems/valid-phone-numbers | |
194,https://leetcode-cn.com/problems/transpose-file | |
195,https://leetcode-cn.com/problems/tenth-line | |
196,https://leetcode-cn.com/problems/delete-duplicate-emails | |
197,https://leetcode-cn.com/problems/rising-temperature | |
198,https://leetcode-cn.com/problems/house-robber | |
199,https://leetcode-cn.com/problems/binary-tree-right-side-view | |
200,https://leetcode-cn.com/problems/number-of-islands | |
201,https://leetcode-cn.com/problems/bitwise-and-of-numbers-range | |
202,https://leetcode-cn.com/problems/happy-number | |
203,https://leetcode-cn.com/problems/remove-linked-list-elements | |
204,https://leetcode-cn.com/problems/count-primes | |
205,https://leetcode-cn.com/problems/isomorphic-strings | |
206,https://leetcode-cn.com/problems/reverse-linked-list | |
207,https://leetcode-cn.com/problems/course-schedule | |
208,https://leetcode-cn.com/problems/implement-trie-prefix-tree | |
209,https://leetcode-cn.com/problems/minimum-size-subarray-sum | |
210,https://leetcode-cn.com/problems/course-schedule-ii | |
211,https://leetcode-cn.com/problems/design-add-and-search-words-data-structure | |
212,https://leetcode-cn.com/problems/word-search-ii | |
213,https://leetcode-cn.com/problems/house-robber-ii | |
214,https://leetcode-cn.com/problems/shortest-palindrome | |
215,https://leetcode-cn.com/problems/kth-largest-element-in-an-array | |
216,https://leetcode-cn.com/problems/combination-sum-iii | |
217,https://leetcode-cn.com/problems/contains-duplicate | |
218,https://leetcode-cn.com/problems/the-skyline-problem | |
219,https://leetcode-cn.com/problems/contains-duplicate-ii | |
220,https://leetcode-cn.com/problems/contains-duplicate-iii | |
221,https://leetcode-cn.com/problems/maximal-square | |
222,https://leetcode-cn.com/problems/count-complete-tree-nodes | |
223,https://leetcode-cn.com/problems/rectangle-area | |
224,https://leetcode-cn.com/problems/basic-calculator | |
225,https://leetcode-cn.com/problems/implement-stack-using-queues | |
226,https://leetcode-cn.com/problems/invert-binary-tree | |
227,https://leetcode-cn.com/problems/basic-calculator-ii | |
228,https://leetcode-cn.com/problems/summary-ranges | |
229,https://leetcode-cn.com/problems/majority-element-ii | |
230,https://leetcode-cn.com/problems/kth-smallest-element-in-a-bst | |
231,https://leetcode-cn.com/problems/power-of-two | |
232,https://leetcode-cn.com/problems/implement-queue-using-stacks | |
233,https://leetcode-cn.com/problems/number-of-digit-one | |
234,https://leetcode-cn.com/problems/palindrome-linked-list | |
235,https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-search-tree | |
236,https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree | |
237,https://leetcode-cn.com/problems/delete-node-in-a-linked-list | |
238,https://leetcode-cn.com/problems/product-of-array-except-self | |
239,https://leetcode-cn.com/problems/sliding-window-maximum | |
240,https://leetcode-cn.com/problems/search-a-2d-matrix-ii | |
241,https://leetcode-cn.com/problems/different-ways-to-add-parentheses | |
242,https://leetcode-cn.com/problems/valid-anagram | |
243,https://leetcode-cn.com/problems/shortest-word-distance | |
244,https://leetcode-cn.com/problems/shortest-word-distance-ii | |
245,https://leetcode-cn.com/problems/shortest-word-distance-iii | |
246,https://leetcode-cn.com/problems/strobogrammatic-number | |
247,https://leetcode-cn.com/problems/strobogrammatic-number-ii | |
248,https://leetcode-cn.com/problems/strobogrammatic-number-iii | |
249,https://leetcode-cn.com/problems/group-shifted-strings | |
250,https://leetcode-cn.com/problems/count-univalue-subtrees | |
251,https://leetcode-cn.com/problems/flatten-2d-vector | |
252,https://leetcode-cn.com/problems/meeting-rooms | |
253,https://leetcode-cn.com/problems/meeting-rooms-ii | |
254,https://leetcode-cn.com/problems/factor-combinations | |
255,https://leetcode-cn.com/problems/verify-preorder-sequence-in-binary-search-tree | |
256,https://leetcode-cn.com/problems/paint-house | |
257,https://leetcode-cn.com/problems/binary-tree-paths | |
258,https://leetcode-cn.com/problems/add-digits | |
259,https://leetcode-cn.com/problems/3sum-smaller | |
260,https://leetcode-cn.com/problems/single-number-iii | |
261,https://leetcode-cn.com/problems/graph-valid-tree | |
262,https://leetcode-cn.com/problems/trips-and-users | |
263,https://leetcode-cn.com/problems/ugly-number | |
264,https://leetcode-cn.com/problems/ugly-number-ii | |
265,https://leetcode-cn.com/problems/paint-house-ii | |
266,https://leetcode-cn.com/problems/palindrome-permutation | |
267,https://leetcode-cn.com/problems/palindrome-permutation-ii | |
268,https://leetcode-cn.com/problems/missing-number | |
269,https://leetcode-cn.com/problems/alien-dictionary | |
270,https://leetcode-cn.com/problems/closest-binary-search-tree-value | |
271,https://leetcode-cn.com/problems/encode-and-decode-strings | |
272,https://leetcode-cn.com/problems/closest-binary-search-tree-value-ii | |
273,https://leetcode-cn.com/problems/integer-to-english-words | |
274,https://leetcode-cn.com/problems/h-index | |
275,https://leetcode-cn.com/problems/h-index-ii | |
276,https://leetcode-cn.com/problems/paint-fence | |
277,https://leetcode-cn.com/problems/find-the-celebrity | |
278,https://leetcode-cn.com/problems/first-bad-version | |
279,https://leetcode-cn.com/problems/perfect-squares | |
280,https://leetcode-cn.com/problems/wiggle-sort | |
281,https://leetcode-cn.com/problems/zigzag-iterator | |
282,https://leetcode-cn.com/problems/expression-add-operators | |
283,https://leetcode-cn.com/problems/move-zeroes | |
284,https://leetcode-cn.com/problems/peeking-iterator | |
285,https://leetcode-cn.com/problems/inorder-successor-in-bst | |
286,https://leetcode-cn.com/problems/walls-and-gates | |
287,https://leetcode-cn.com/problems/find-the-duplicate-number | |
288,https://leetcode-cn.com/problems/unique-word-abbreviation | |
289,https://leetcode-cn.com/problems/game-of-life | |
290,https://leetcode-cn.com/problems/word-pattern | |
291,https://leetcode-cn.com/problems/word-pattern-ii | |
292,https://leetcode-cn.com/problems/nim-game | |
293,https://leetcode-cn.com/problems/flip-game | |
294,https://leetcode-cn.com/problems/flip-game-ii | |
295,https://leetcode-cn.com/problems/find-median-from-data-stream | |
296,https://leetcode-cn.com/problems/best-meeting-point | |
297,https://leetcode-cn.com/problems/serialize-and-deserialize-binary-tree | |
298,https://leetcode-cn.com/problems/binary-tree-longest-consecutive-sequence | |
299,https://leetcode-cn.com/problems/bulls-and-cows | |
300,https://leetcode-cn.com/problems/longest-increasing-subsequence | |
301,https://leetcode-cn.com/problems/remove-invalid-parentheses | |
302,https://leetcode-cn.com/problems/smallest-rectangle-enclosing-black-pixels | |
303,https://leetcode-cn.com/problems/range-sum-query-immutable | |
304,https://leetcode-cn.com/problems/range-sum-query-2d-immutable | |
305,https://leetcode-cn.com/problems/number-of-islands-ii | |
306,https://leetcode-cn.com/problems/additive-number | |
307,https://leetcode-cn.com/problems/range-sum-query-mutable | |
308,https://leetcode-cn.com/problems/range-sum-query-2d-mutable | |
309,https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-with-cooldown | |
310,https://leetcode-cn.com/problems/minimum-height-trees | |
311,https://leetcode-cn.com/problems/sparse-matrix-multiplication | |
312,https://leetcode-cn.com/problems/burst-balloons | |
313,https://leetcode-cn.com/problems/super-ugly-number | |
314,https://leetcode-cn.com/problems/binary-tree-vertical-order-traversal | |
315,https://leetcode-cn.com/problems/count-of-smaller-numbers-after-self | |
316,https://leetcode-cn.com/problems/remove-duplicate-letters | |
317,https://leetcode-cn.com/problems/shortest-distance-from-all-buildings | |
318,https://leetcode-cn.com/problems/maximum-product-of-word-lengths | |
319,https://leetcode-cn.com/problems/bulb-switcher | |
320,https://leetcode-cn.com/problems/generalized-abbreviation | |
321,https://leetcode-cn.com/problems/create-maximum-number | |
322,https://leetcode-cn.com/problems/coin-change | |
323,https://leetcode-cn.com/problems/number-of-connected-components-in-an-undirected-graph | |
324,https://leetcode-cn.com/problems/wiggle-sort-ii | |
325,https://leetcode-cn.com/problems/maximum-size-subarray-sum-equals-k | |
326,https://leetcode-cn.com/problems/power-of-three | |
327,https://leetcode-cn.com/problems/count-of-range-sum | |
328,https://leetcode-cn.com/problems/odd-even-linked-list | |
329,https://leetcode-cn.com/problems/longest-increasing-path-in-a-matrix | |
330,https://leetcode-cn.com/problems/patching-array | |
331,https://leetcode-cn.com/problems/verify-preorder-serialization-of-a-binary-tree | |
332,https://leetcode-cn.com/problems/reconstruct-itinerary | |
333,https://leetcode-cn.com/problems/largest-bst-subtree | |
334,https://leetcode-cn.com/problems/increasing-triplet-subsequence | |
335,https://leetcode-cn.com/problems/self-crossing | |
336,https://leetcode-cn.com/problems/palindrome-pairs | |
337,https://leetcode-cn.com/problems/house-robber-iii | |
338,https://leetcode-cn.com/problems/counting-bits | |
339,https://leetcode-cn.com/problems/nested-list-weight-sum | |
340,https://leetcode-cn.com/problems/longest-substring-with-at-most-k-distinct-characters | |
341,https://leetcode-cn.com/problems/flatten-nested-list-iterator | |
342,https://leetcode-cn.com/problems/power-of-four | |
343,https://leetcode-cn.com/problems/integer-break | |
344,https://leetcode-cn.com/problems/reverse-string | |
345,https://leetcode-cn.com/problems/reverse-vowels-of-a-string | |
346,https://leetcode-cn.com/problems/moving-average-from-data-stream | |
347,https://leetcode-cn.com/problems/top-k-frequent-elements | |
348,https://leetcode-cn.com/problems/design-tic-tac-toe | |
349,https://leetcode-cn.com/problems/intersection-of-two-arrays | |
350,https://leetcode-cn.com/problems/intersection-of-two-arrays-ii | |
351,https://leetcode-cn.com/problems/android-unlock-patterns | |
352,https://leetcode-cn.com/problems/data-stream-as-disjoint-intervals | |
353,https://leetcode-cn.com/problems/design-snake-game | |
354,https://leetcode-cn.com/problems/russian-doll-envelopes | |
355,https://leetcode-cn.com/problems/design-twitter | |
356,https://leetcode-cn.com/problems/line-reflection | |
357,https://leetcode-cn.com/problems/count-numbers-with-unique-digits | |
358,https://leetcode-cn.com/problems/rearrange-string-k-distance-apart | |
359,https://leetcode-cn.com/problems/logger-rate-limiter | |
360,https://leetcode-cn.com/problems/sort-transformed-array | |
361,https://leetcode-cn.com/problems/bomb-enemy | |
362,https://leetcode-cn.com/problems/design-hit-counter | |
364,https://leetcode-cn.com/problems/nested-list-weight-sum-ii | |
365,https://leetcode-cn.com/problems/water-and-jug-problem | |
366,https://leetcode-cn.com/problems/find-leaves-of-binary-tree | |
367,https://leetcode-cn.com/problems/valid-perfect-square | |
368,https://leetcode-cn.com/problems/largest-divisible-subset | |
369,https://leetcode-cn.com/problems/plus-one-linked-list | |
370,https://leetcode-cn.com/problems/range-addition | |
371,https://leetcode-cn.com/problems/sum-of-two-integers | |
372,https://leetcode-cn.com/problems/super-pow | |
373,https://leetcode-cn.com/problems/find-k-pairs-with-smallest-sums | |
374,https://leetcode-cn.com/problems/guess-number-higher-or-lower | |
375,https://leetcode-cn.com/problems/guess-number-higher-or-lower-ii | |
376,https://leetcode-cn.com/problems/wiggle-subsequence | |
377,https://leetcode-cn.com/problems/combination-sum-iv | |
378,https://leetcode-cn.com/problems/kth-smallest-element-in-a-sorted-matrix | |
379,https://leetcode-cn.com/problems/design-phone-directory | |
380,https://leetcode-cn.com/problems/insert-delete-getrandom-o1 | |
381,https://leetcode-cn.com/problems/insert-delete-getrandom-o1-duplicates-allowed | |
382,https://leetcode-cn.com/problems/linked-list-random-node | |
383,https://leetcode-cn.com/problems/ransom-note | |
384,https://leetcode-cn.com/problems/shuffle-an-array | |
385,https://leetcode-cn.com/problems/mini-parser | |
386,https://leetcode-cn.com/problems/lexicographical-numbers | |
387,https://leetcode-cn.com/problems/first-unique-character-in-a-string | |
388,https://leetcode-cn.com/problems/longest-absolute-file-path | |
389,https://leetcode-cn.com/problems/find-the-difference | |
390,https://leetcode-cn.com/problems/elimination-game | |
391,https://leetcode-cn.com/problems/perfect-rectangle | |
392,https://leetcode-cn.com/problems/is-subsequence | |
393,https://leetcode-cn.com/problems/utf-8-validation | |
394,https://leetcode-cn.com/problems/decode-string | |
395,https://leetcode-cn.com/problems/longest-substring-with-at-least-k-repeating-characters | |
396,https://leetcode-cn.com/problems/rotate-function | |
397,https://leetcode-cn.com/problems/integer-replacement | |
398,https://leetcode-cn.com/problems/random-pick-index | |
399,https://leetcode-cn.com/problems/evaluate-division | |
400,https://leetcode-cn.com/problems/nth-digit | |
401,https://leetcode-cn.com/problems/binary-watch | |
402,https://leetcode-cn.com/problems/remove-k-digits | |
403,https://leetcode-cn.com/problems/frog-jump | |
404,https://leetcode-cn.com/problems/sum-of-left-leaves | |
405,https://leetcode-cn.com/problems/convert-a-number-to-hexadecimal | |
406,https://leetcode-cn.com/problems/queue-reconstruction-by-height | |
407,https://leetcode-cn.com/problems/trapping-rain-water-ii | |
408,https://leetcode-cn.com/problems/valid-word-abbreviation | |
409,https://leetcode-cn.com/problems/longest-palindrome | |
410,https://leetcode-cn.com/problems/split-array-largest-sum | |
411,https://leetcode-cn.com/problems/minimum-unique-word-abbreviation | |
412,https://leetcode-cn.com/problems/fizz-buzz | |
413,https://leetcode-cn.com/problems/arithmetic-slices | |
414,https://leetcode-cn.com/problems/third-maximum-number | |
415,https://leetcode-cn.com/problems/add-strings | |
416,https://leetcode-cn.com/problems/partition-equal-subset-sum | |
417,https://leetcode-cn.com/problems/pacific-atlantic-water-flow | |
418,https://leetcode-cn.com/problems/sentence-screen-fitting | |
419,https://leetcode-cn.com/problems/battleships-in-a-board | |
420,https://leetcode-cn.com/problems/strong-password-checker | |
421,https://leetcode-cn.com/problems/maximum-xor-of-two-numbers-in-an-array | |
422,https://leetcode-cn.com/problems/valid-word-square | |
423,https://leetcode-cn.com/problems/reconstruct-original-digits-from-english | |
424,https://leetcode-cn.com/problems/longest-repeating-character-replacement | |
425,https://leetcode-cn.com/problems/word-squares | |
426,https://leetcode-cn.com/problems/convert-binary-search-tree-to-sorted-doubly-linked-list | |
427,https://leetcode-cn.com/problems/construct-quad-tree | |
428,https://leetcode-cn.com/problems/serialize-and-deserialize-n-ary-tree | |
429,https://leetcode-cn.com/problems/n-ary-tree-level-order-traversal | |
430,https://leetcode-cn.com/problems/flatten-a-multilevel-doubly-linked-list | |
431,https://leetcode-cn.com/problems/encode-n-ary-tree-to-binary-tree | |
432,https://leetcode-cn.com/problems/all-oone-data-structure | |
433,https://leetcode-cn.com/problems/minimum-genetic-mutation | |
434,https://leetcode-cn.com/problems/number-of-segments-in-a-string | |
435,https://leetcode-cn.com/problems/non-overlapping-intervals | |
436,https://leetcode-cn.com/problems/find-right-interval | |
437,https://leetcode-cn.com/problems/path-sum-iii | |
438,https://leetcode-cn.com/problems/find-all-anagrams-in-a-string | |
439,https://leetcode-cn.com/problems/ternary-expression-parser | |
440,https://leetcode-cn.com/problems/k-th-smallest-in-lexicographical-order | |
441,https://leetcode-cn.com/problems/arranging-coins | |
442,https://leetcode-cn.com/problems/find-all-duplicates-in-an-array | |
443,https://leetcode-cn.com/problems/string-compression | |
444,https://leetcode-cn.com/problems/sequence-reconstruction | |
445,https://leetcode-cn.com/problems/add-two-numbers-ii | |
446,https://leetcode-cn.com/problems/arithmetic-slices-ii-subsequence | |
447,https://leetcode-cn.com/problems/number-of-boomerangs | |
448,https://leetcode-cn.com/problems/find-all-numbers-disappeared-in-an-array | |
449,https://leetcode-cn.com/problems/serialize-and-deserialize-bst | |
450,https://leetcode-cn.com/problems/delete-node-in-a-bst | |
451,https://leetcode-cn.com/problems/sort-characters-by-frequency | |
452,https://leetcode-cn.com/problems/minimum-number-of-arrows-to-burst-balloons | |
453,https://leetcode-cn.com/problems/minimum-moves-to-equal-array-elements | |
454,https://leetcode-cn.com/problems/4sum-ii | |
455,https://leetcode-cn.com/problems/assign-cookies | |
456,https://leetcode-cn.com/problems/132-pattern | |
457,https://leetcode-cn.com/problems/circular-array-loop | |
458,https://leetcode-cn.com/problems/poor-pigs | |
459,https://leetcode-cn.com/problems/repeated-substring-pattern | |
460,https://leetcode-cn.com/problems/lfu-cache | |
461,https://leetcode-cn.com/problems/hamming-distance | |
462,https://leetcode-cn.com/problems/minimum-moves-to-equal-array-elements-ii | |
463,https://leetcode-cn.com/problems/island-perimeter | |
464,https://leetcode-cn.com/problems/can-i-win | |
465,https://leetcode-cn.com/problems/optimal-account-balancing | |
466,https://leetcode-cn.com/problems/count-the-repetitions | |
467,https://leetcode-cn.com/problems/unique-substrings-in-wraparound-string | |
468,https://leetcode-cn.com/problems/validate-ip-address | |
469,https://leetcode-cn.com/problems/convex-polygon | |
470,https://leetcode-cn.com/problems/implement-rand10-using-rand7 | |
471,https://leetcode-cn.com/problems/encode-string-with-shortest-length | |
472,https://leetcode-cn.com/problems/concatenated-words | |
473,https://leetcode-cn.com/problems/matchsticks-to-square | |
474,https://leetcode-cn.com/problems/ones-and-zeroes | |
475,https://leetcode-cn.com/problems/heaters | |
476,https://leetcode-cn.com/problems/number-complement | |
477,https://leetcode-cn.com/problems/total-hamming-distance | |
478,https://leetcode-cn.com/problems/generate-random-point-in-a-circle | |
479,https://leetcode-cn.com/problems/largest-palindrome-product | |
480,https://leetcode-cn.com/problems/sliding-window-median | |
481,https://leetcode-cn.com/problems/magical-string | |
482,https://leetcode-cn.com/problems/license-key-formatting | |
483,https://leetcode-cn.com/problems/smallest-good-base | |
484,https://leetcode-cn.com/problems/find-permutation | |
485,https://leetcode-cn.com/problems/max-consecutive-ones | |
486,https://leetcode-cn.com/problems/predict-the-winner | |
487,https://leetcode-cn.com/problems/max-consecutive-ones-ii | |
488,https://leetcode-cn.com/problems/zuma-game | |
489,https://leetcode-cn.com/problems/robot-room-cleaner | |
490,https://leetcode-cn.com/problems/the-maze | |
491,https://leetcode-cn.com/problems/increasing-subsequences | |
492,https://leetcode-cn.com/problems/construct-the-rectangle | |
493,https://leetcode-cn.com/problems/reverse-pairs | |
494,https://leetcode-cn.com/problems/target-sum | |
495,https://leetcode-cn.com/problems/teemo-attacking | |
496,https://leetcode-cn.com/problems/next-greater-element-i | |
497,https://leetcode-cn.com/problems/random-point-in-non-overlapping-rectangles | |
498,https://leetcode-cn.com/problems/diagonal-traverse | |
499,https://leetcode-cn.com/problems/the-maze-iii | |
500,https://leetcode-cn.com/problems/keyboard-row | |
501,https://leetcode-cn.com/problems/find-mode-in-binary-search-tree | |
502,https://leetcode-cn.com/problems/ipo | |
503,https://leetcode-cn.com/problems/next-greater-element-ii | |
504,https://leetcode-cn.com/problems/base-7 | |
505,https://leetcode-cn.com/problems/the-maze-ii | |
506,https://leetcode-cn.com/problems/relative-ranks | |
507,https://leetcode-cn.com/problems/perfect-number | |
508,https://leetcode-cn.com/problems/most-frequent-subtree-sum | |
509,https://leetcode-cn.com/problems/fibonacci-number | |
510,https://leetcode-cn.com/problems/inorder-successor-in-bst-ii | |
511,https://leetcode-cn.com/problems/game-play-analysis-i | |
512,https://leetcode-cn.com/problems/game-play-analysis-ii | |
513,https://leetcode-cn.com/problems/find-bottom-left-tree-value | |
514,https://leetcode-cn.com/problems/freedom-trail | |
515,https://leetcode-cn.com/problems/find-largest-value-in-each-tree-row | |
516,https://leetcode-cn.com/problems/longest-palindromic-subsequence | |
517,https://leetcode-cn.com/problems/super-washing-machines | |
518,https://leetcode-cn.com/problems/coin-change-2 | |
519,https://leetcode-cn.com/problems/random-flip-matrix | |
520,https://leetcode-cn.com/problems/detect-capital | |
521,https://leetcode-cn.com/problems/longest-uncommon-subsequence-i | |
522,https://leetcode-cn.com/problems/longest-uncommon-subsequence-ii | |
523,https://leetcode-cn.com/problems/continuous-subarray-sum | |
524,https://leetcode-cn.com/problems/longest-word-in-dictionary-through-deleting | |
525,https://leetcode-cn.com/problems/contiguous-array | |
526,https://leetcode-cn.com/problems/beautiful-arrangement | |
527,https://leetcode-cn.com/problems/word-abbreviation | |
528,https://leetcode-cn.com/problems/random-pick-with-weight | |
529,https://leetcode-cn.com/problems/minesweeper | |
530,https://leetcode-cn.com/problems/minimum-absolute-difference-in-bst | |
531,https://leetcode-cn.com/problems/lonely-pixel-i | |
532,https://leetcode-cn.com/problems/k-diff-pairs-in-an-array | |
533,https://leetcode-cn.com/problems/lonely-pixel-ii | |
534,https://leetcode-cn.com/problems/game-play-analysis-iii | |
535,https://leetcode-cn.com/problems/encode-and-decode-tinyurl | |
536,https://leetcode-cn.com/problems/construct-binary-tree-from-string | |
537,https://leetcode-cn.com/problems/complex-number-multiplication | |
538,https://leetcode-cn.com/problems/convert-bst-to-greater-tree | |
539,https://leetcode-cn.com/problems/minimum-time-difference | |
540,https://leetcode-cn.com/problems/single-element-in-a-sorted-array | |
541,https://leetcode-cn.com/problems/reverse-string-ii | |
542,https://leetcode-cn.com/problems/01-matrix | |
543,https://leetcode-cn.com/problems/diameter-of-binary-tree | |
544,https://leetcode-cn.com/problems/output-contest-matches | |
545,https://leetcode-cn.com/problems/boundary-of-binary-tree | |
546,https://leetcode-cn.com/problems/remove-boxes | |
547,https://leetcode-cn.com/problems/number-of-provinces | |
548,https://leetcode-cn.com/problems/split-array-with-equal-sum | |
549,https://leetcode-cn.com/problems/binary-tree-longest-consecutive-sequence-ii | |
550,https://leetcode-cn.com/problems/game-play-analysis-iv | |
551,https://leetcode-cn.com/problems/student-attendance-record-i | |
552,https://leetcode-cn.com/problems/student-attendance-record-ii | |
553,https://leetcode-cn.com/problems/optimal-division | |
554,https://leetcode-cn.com/problems/brick-wall | |
555,https://leetcode-cn.com/problems/split-concatenated-strings | |
556,https://leetcode-cn.com/problems/next-greater-element-iii | |
557,https://leetcode-cn.com/problems/reverse-words-in-a-string-iii | |
558,https://leetcode-cn.com/problems/logical-or-of-two-binary-grids-represented-as-quad-trees | |
559,https://leetcode-cn.com/problems/maximum-depth-of-n-ary-tree | |
560,https://leetcode-cn.com/problems/subarray-sum-equals-k | |
561,https://leetcode-cn.com/problems/array-partition-i | |
562,https://leetcode-cn.com/problems/longest-line-of-consecutive-one-in-matrix | |
563,https://leetcode-cn.com/problems/binary-tree-tilt | |
564,https://leetcode-cn.com/problems/find-the-closest-palindrome | |
565,https://leetcode-cn.com/problems/array-nesting | |
566,https://leetcode-cn.com/problems/reshape-the-matrix | |
567,https://leetcode-cn.com/problems/permutation-in-string | |
568,https://leetcode-cn.com/problems/maximum-vacation-days | |
569,https://leetcode-cn.com/problems/median-employee-salary | |
570,https://leetcode-cn.com/problems/managers-with-at-least-5-direct-reports | |
571,https://leetcode-cn.com/problems/find-median-given-frequency-of-numbers | |
572,https://leetcode-cn.com/problems/subtree-of-another-tree | |
573,https://leetcode-cn.com/problems/squirrel-simulation | |
574,https://leetcode-cn.com/problems/winning-candidate | |
575,https://leetcode-cn.com/problems/distribute-candies | |
576,https://leetcode-cn.com/problems/out-of-boundary-paths | |
577,https://leetcode-cn.com/problems/employee-bonus | |
578,https://leetcode-cn.com/problems/get-highest-answer-rate-question | |
579,https://leetcode-cn.com/problems/find-cumulative-salary-of-an-employee | |
580,https://leetcode-cn.com/problems/count-student-number-in-departments | |
581,https://leetcode-cn.com/problems/shortest-unsorted-continuous-subarray | |
582,https://leetcode-cn.com/problems/kill-process | |
583,https://leetcode-cn.com/problems/delete-operation-for-two-strings | |
584,https://leetcode-cn.com/problems/find-customer-referee | |
585,https://leetcode-cn.com/problems/investments-in-2016 | |
586,https://leetcode-cn.com/problems/customer-placing-the-largest-number-of-orders | |
587,https://leetcode-cn.com/problems/erect-the-fence | |
588,https://leetcode-cn.com/problems/design-in-memory-file-system | |
589,https://leetcode-cn.com/problems/n-ary-tree-preorder-traversal | |
590,https://leetcode-cn.com/problems/n-ary-tree-postorder-traversal | |
591,https://leetcode-cn.com/problems/tag-validator | |
592,https://leetcode-cn.com/problems/fraction-addition-and-subtraction | |
593,https://leetcode-cn.com/problems/valid-square | |
594,https://leetcode-cn.com/problems/longest-harmonious-subsequence | |
595,https://leetcode-cn.com/problems/big-countries | |
596,https://leetcode-cn.com/problems/classes-more-than-5-students | |
597,https://leetcode-cn.com/problems/friend-requests-i-overall-acceptance-rate | |
598,https://leetcode-cn.com/problems/range-addition-ii | |
599,https://leetcode-cn.com/problems/minimum-index-sum-of-two-lists | |
600,https://leetcode-cn.com/problems/non-negative-integers-without-consecutive-ones | |
601,https://leetcode-cn.com/problems/human-traffic-of-stadium | |
602,https://leetcode-cn.com/problems/friend-requests-ii-who-has-the-most-friends | |
603,https://leetcode-cn.com/problems/consecutive-available-seats | |
604,https://leetcode-cn.com/problems/design-compressed-string-iterator | |
605,https://leetcode-cn.com/problems/can-place-flowers | |
606,https://leetcode-cn.com/problems/construct-string-from-binary-tree | |
607,https://leetcode-cn.com/problems/sales-person | |
608,https://leetcode-cn.com/problems/tree-node | |
609,https://leetcode-cn.com/problems/find-duplicate-file-in-system | |
610,https://leetcode-cn.com/problems/triangle-judgement | |
611,https://leetcode-cn.com/problems/valid-triangle-number | |
612,https://leetcode-cn.com/problems/shortest-distance-in-a-plane | |
613,https://leetcode-cn.com/problems/shortest-distance-in-a-line | |
614,https://leetcode-cn.com/problems/second-degree-follower | |
615,https://leetcode-cn.com/problems/average-salary-departments-vs-company | |
616,https://leetcode-cn.com/problems/add-bold-tag-in-string | |
617,https://leetcode-cn.com/problems/merge-two-binary-trees | |
618,https://leetcode-cn.com/problems/students-report-by-geography | |
619,https://leetcode-cn.com/problems/biggest-single-number | |
620,https://leetcode-cn.com/problems/not-boring-movies | |
621,https://leetcode-cn.com/problems/task-scheduler | |
622,https://leetcode-cn.com/problems/design-circular-queue | |
623,https://leetcode-cn.com/problems/add-one-row-to-tree | |
624,https://leetcode-cn.com/problems/maximum-distance-in-arrays | |
625,https://leetcode-cn.com/problems/minimum-factorization | |
626,https://leetcode-cn.com/problems/exchange-seats | |
627,https://leetcode-cn.com/problems/swap-salary | |
628,https://leetcode-cn.com/problems/maximum-product-of-three-numbers | |
629,https://leetcode-cn.com/problems/k-inverse-pairs-array | |
630,https://leetcode-cn.com/problems/course-schedule-iii | |
631,https://leetcode-cn.com/problems/design-excel-sum-formula | |
632,https://leetcode-cn.com/problems/smallest-range-covering-elements-from-k-lists | |
633,https://leetcode-cn.com/problems/sum-of-square-numbers | |
634,https://leetcode-cn.com/problems/find-the-derangement-of-an-array | |
635,https://leetcode-cn.com/problems/design-log-storage-system | |
636,https://leetcode-cn.com/problems/exclusive-time-of-functions | |
637,https://leetcode-cn.com/problems/average-of-levels-in-binary-tree | |
638,https://leetcode-cn.com/problems/shopping-offers | |
639,https://leetcode-cn.com/problems/decode-ways-ii | |
640,https://leetcode-cn.com/problems/solve-the-equation | |
641,https://leetcode-cn.com/problems/design-circular-deque | |
642,https://leetcode-cn.com/problems/design-search-autocomplete-system | |
643,https://leetcode-cn.com/problems/maximum-average-subarray-i | |
644,https://leetcode-cn.com/problems/maximum-average-subarray-ii | |
645,https://leetcode-cn.com/problems/set-mismatch | |
646,https://leetcode-cn.com/problems/maximum-length-of-pair-chain | |
647,https://leetcode-cn.com/problems/palindromic-substrings | |
648,https://leetcode-cn.com/problems/replace-words | |
649,https://leetcode-cn.com/problems/dota2-senate | |
650,https://leetcode-cn.com/problems/2-keys-keyboard | |
651,https://leetcode-cn.com/problems/4-keys-keyboard | |
652,https://leetcode-cn.com/problems/find-duplicate-subtrees | |
653,https://leetcode-cn.com/problems/two-sum-iv-input-is-a-bst | |
654,https://leetcode-cn.com/problems/maximum-binary-tree | |
655,https://leetcode-cn.com/problems/print-binary-tree | |
656,https://leetcode-cn.com/problems/coin-path | |
657,https://leetcode-cn.com/problems/robot-return-to-origin | |
658,https://leetcode-cn.com/problems/find-k-closest-elements | |
659,https://leetcode-cn.com/problems/split-array-into-consecutive-subsequences | |
660,https://leetcode-cn.com/problems/remove-9 | |
661,https://leetcode-cn.com/problems/image-smoother | |
662,https://leetcode-cn.com/problems/maximum-width-of-binary-tree | |
663,https://leetcode-cn.com/problems/equal-tree-partition | |
664,https://leetcode-cn.com/problems/strange-printer | |
665,https://leetcode-cn.com/problems/non-decreasing-array | |
666,https://leetcode-cn.com/problems/path-sum-iv | |
667,https://leetcode-cn.com/problems/beautiful-arrangement-ii | |
668,https://leetcode-cn.com/problems/kth-smallest-number-in-multiplication-table | |
669,https://leetcode-cn.com/problems/trim-a-binary-search-tree | |
670,https://leetcode-cn.com/problems/maximum-swap | |
671,https://leetcode-cn.com/problems/second-minimum-node-in-a-binary-tree | |
672,https://leetcode-cn.com/problems/bulb-switcher-ii | |
673,https://leetcode-cn.com/problems/number-of-longest-increasing-subsequence | |
674,https://leetcode-cn.com/problems/longest-continuous-increasing-subsequence | |
675,https://leetcode-cn.com/problems/cut-off-trees-for-golf-event | |
676,https://leetcode-cn.com/problems/implement-magic-dictionary | |
677,https://leetcode-cn.com/problems/map-sum-pairs | |
678,https://leetcode-cn.com/problems/valid-parenthesis-string | |
679,https://leetcode-cn.com/problems/24-game | |
680,https://leetcode-cn.com/problems/valid-palindrome-ii | |
681,https://leetcode-cn.com/problems/next-closest-time | |
682,https://leetcode-cn.com/problems/baseball-game | |
683,https://leetcode-cn.com/problems/k-empty-slots | |
684,https://leetcode-cn.com/problems/redundant-connection | |
685,https://leetcode-cn.com/problems/redundant-connection-ii | |
686,https://leetcode-cn.com/problems/repeated-string-match | |
687,https://leetcode-cn.com/problems/longest-univalue-path | |
688,https://leetcode-cn.com/problems/knight-probability-in-chessboard | |
689,https://leetcode-cn.com/problems/maximum-sum-of-3-non-overlapping-subarrays | |
690,https://leetcode-cn.com/problems/employee-importance | |
691,https://leetcode-cn.com/problems/stickers-to-spell-word | |
692,https://leetcode-cn.com/problems/top-k-frequent-words | |
693,https://leetcode-cn.com/problems/binary-number-with-alternating-bits | |
694,https://leetcode-cn.com/problems/number-of-distinct-islands | |
695,https://leetcode-cn.com/problems/max-area-of-island | |
696,https://leetcode-cn.com/problems/count-binary-substrings | |
697,https://leetcode-cn.com/problems/degree-of-an-array | |
698,https://leetcode-cn.com/problems/partition-to-k-equal-sum-subsets | |
699,https://leetcode-cn.com/problems/falling-squares | |
700,https://leetcode-cn.com/problems/search-in-a-binary-search-tree | |
701,https://leetcode-cn.com/problems/insert-into-a-binary-search-tree | |
702,https://leetcode-cn.com/problems/search-in-a-sorted-array-of-unknown-size | |
703,https://leetcode-cn.com/problems/kth-largest-element-in-a-stream | |
704,https://leetcode-cn.com/problems/binary-search | |
705,https://leetcode-cn.com/problems/design-hashset | |
706,https://leetcode-cn.com/problems/design-hashmap | |
707,https://leetcode-cn.com/problems/design-linked-list | |
708,https://leetcode-cn.com/problems/insert-into-a-sorted-circular-linked-list | |
709,https://leetcode-cn.com/problems/to-lower-case | |
710,https://leetcode-cn.com/problems/random-pick-with-blacklist | |
711,https://leetcode-cn.com/problems/number-of-distinct-islands-ii | |
712,https://leetcode-cn.com/problems/minimum-ascii-delete-sum-for-two-strings | |
713,https://leetcode-cn.com/problems/subarray-product-less-than-k | |
714,https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-with-transaction-fee | |
715,https://leetcode-cn.com/problems/range-module | |
716,https://leetcode-cn.com/problems/max-stack | |
717,https://leetcode-cn.com/problems/1-bit-and-2-bit-characters | |
718,https://leetcode-cn.com/problems/maximum-length-of-repeated-subarray | |
719,https://leetcode-cn.com/problems/find-k-th-smallest-pair-distance | |
720,https://leetcode-cn.com/problems/longest-word-in-dictionary | |
721,https://leetcode-cn.com/problems/accounts-merge | |
722,https://leetcode-cn.com/problems/remove-comments | |
723,https://leetcode-cn.com/problems/candy-crush | |
724,https://leetcode-cn.com/problems/find-pivot-index | |
725,https://leetcode-cn.com/problems/split-linked-list-in-parts | |
726,https://leetcode-cn.com/problems/number-of-atoms | |
727,https://leetcode-cn.com/problems/minimum-window-subsequence | |
728,https://leetcode-cn.com/problems/self-dividing-numbers | |
729,https://leetcode-cn.com/problems/my-calendar-i | |
730,https://leetcode-cn.com/problems/count-different-palindromic-subsequences | |
731,https://leetcode-cn.com/problems/my-calendar-ii | |
732,https://leetcode-cn.com/problems/my-calendar-iii | |
733,https://leetcode-cn.com/problems/flood-fill | |
734,https://leetcode-cn.com/problems/sentence-similarity | |
735,https://leetcode-cn.com/problems/asteroid-collision | |
736,https://leetcode-cn.com/problems/parse-lisp-expression | |
737,https://leetcode-cn.com/problems/sentence-similarity-ii | |
738,https://leetcode-cn.com/problems/monotone-increasing-digits | |
739,https://leetcode-cn.com/problems/daily-temperatures | |
740,https://leetcode-cn.com/problems/delete-and-earn | |
741,https://leetcode-cn.com/problems/cherry-pickup | |
742,https://leetcode-cn.com/problems/closest-leaf-in-a-binary-tree | |
743,https://leetcode-cn.com/problems/network-delay-time | |
744,https://leetcode-cn.com/problems/find-smallest-letter-greater-than-target | |
745,https://leetcode-cn.com/problems/prefix-and-suffix-search | |
746,https://leetcode-cn.com/problems/min-cost-climbing-stairs | |
747,https://leetcode-cn.com/problems/largest-number-at-least-twice-of-others | |
748,https://leetcode-cn.com/problems/shortest-completing-word | |
749,https://leetcode-cn.com/problems/contain-virus | |
750,https://leetcode-cn.com/problems/number-of-corner-rectangles | |
751,https://leetcode-cn.com/problems/ip-to-cidr | |
752,https://leetcode-cn.com/problems/open-the-lock | |
753,https://leetcode-cn.com/problems/cracking-the-safe | |
754,https://leetcode-cn.com/problems/reach-a-number | |
755,https://leetcode-cn.com/problems/pour-water | |
756,https://leetcode-cn.com/problems/pyramid-transition-matrix | |
757,https://leetcode-cn.com/problems/set-intersection-size-at-least-two | |
758,https://leetcode-cn.com/problems/bold-words-in-string | |
759,https://leetcode-cn.com/problems/employee-free-time | |
760,https://leetcode-cn.com/problems/find-anagram-mappings | |
761,https://leetcode-cn.com/problems/special-binary-string | |
762,https://leetcode-cn.com/problems/prime-number-of-set-bits-in-binary-representation | |
763,https://leetcode-cn.com/problems/partition-labels | |
764,https://leetcode-cn.com/problems/largest-plus-sign | |
765,https://leetcode-cn.com/problems/couples-holding-hands | |
766,https://leetcode-cn.com/problems/toeplitz-matrix | |
767,https://leetcode-cn.com/problems/reorganize-string | |
768,https://leetcode-cn.com/problems/max-chunks-to-make-sorted-ii | |
769,https://leetcode-cn.com/problems/max-chunks-to-make-sorted | |
770,https://leetcode-cn.com/problems/basic-calculator-iv | |
771,https://leetcode-cn.com/problems/jewels-and-stones | |
772,https://leetcode-cn.com/problems/basic-calculator-iii | |
773,https://leetcode-cn.com/problems/sliding-puzzle | |
774,https://leetcode-cn.com/problems/minimize-max-distance-to-gas-station | |
775,https://leetcode-cn.com/problems/global-and-local-inversions | |
776,https://leetcode-cn.com/problems/split-bst | |
777,https://leetcode-cn.com/problems/swap-adjacent-in-lr-string | |
778,https://leetcode-cn.com/problems/swim-in-rising-water | |
779,https://leetcode-cn.com/problems/k-th-symbol-in-grammar | |
780,https://leetcode-cn.com/problems/reaching-points | |
781,https://leetcode-cn.com/problems/rabbits-in-forest | |
782,https://leetcode-cn.com/problems/transform-to-chessboard | |
783,https://leetcode-cn.com/problems/minimum-distance-between-bst-nodes | |
784,https://leetcode-cn.com/problems/letter-case-permutation | |
785,https://leetcode-cn.com/problems/is-graph-bipartite | |
786,https://leetcode-cn.com/problems/k-th-smallest-prime-fraction | |
787,https://leetcode-cn.com/problems/cheapest-flights-within-k-stops | |
788,https://leetcode-cn.com/problems/rotated-digits | |
789,https://leetcode-cn.com/problems/escape-the-ghosts | |
790,https://leetcode-cn.com/problems/domino-and-tromino-tiling | |
791,https://leetcode-cn.com/problems/custom-sort-string | |
792,https://leetcode-cn.com/problems/number-of-matching-subsequences | |
793,https://leetcode-cn.com/problems/preimage-size-of-factorial-zeroes-function | |
794,https://leetcode-cn.com/problems/valid-tic-tac-toe-state | |
795,https://leetcode-cn.com/problems/number-of-subarrays-with-bounded-maximum | |
796,https://leetcode-cn.com/problems/rotate-string | |
797,https://leetcode-cn.com/problems/all-paths-from-source-to-target | |
798,https://leetcode-cn.com/problems/smallest-rotation-with-highest-score | |
799,https://leetcode-cn.com/problems/champagne-tower | |
800,https://leetcode-cn.com/problems/similar-rgb-color | |
801,https://leetcode-cn.com/problems/minimum-swaps-to-make-sequences-increasing | |
802,https://leetcode-cn.com/problems/find-eventual-safe-states | |
803,https://leetcode-cn.com/problems/bricks-falling-when-hit | |
804,https://leetcode-cn.com/problems/unique-morse-code-words | |
805,https://leetcode-cn.com/problems/split-array-with-same-average | |
806,https://leetcode-cn.com/problems/number-of-lines-to-write-string | |
807,https://leetcode-cn.com/problems/max-increase-to-keep-city-skyline | |
808,https://leetcode-cn.com/problems/soup-servings | |
809,https://leetcode-cn.com/problems/expressive-words | |
810,https://leetcode-cn.com/problems/chalkboard-xor-game | |
811,https://leetcode-cn.com/problems/subdomain-visit-count | |
812,https://leetcode-cn.com/problems/largest-triangle-area | |
813,https://leetcode-cn.com/problems/largest-sum-of-averages | |
814,https://leetcode-cn.com/problems/binary-tree-pruning | |
815,https://leetcode-cn.com/problems/bus-routes | |
816,https://leetcode-cn.com/problems/ambiguous-coordinates | |
817,https://leetcode-cn.com/problems/linked-list-components | |
818,https://leetcode-cn.com/problems/race-car | |
819,https://leetcode-cn.com/problems/most-common-word | |
820,https://leetcode-cn.com/problems/short-encoding-of-words | |
821,https://leetcode-cn.com/problems/shortest-distance-to-a-character | |
822,https://leetcode-cn.com/problems/card-flipping-game | |
823,https://leetcode-cn.com/problems/binary-trees-with-factors | |
824,https://leetcode-cn.com/problems/goat-latin | |
825,https://leetcode-cn.com/problems/friends-of-appropriate-ages | |
826,https://leetcode-cn.com/problems/most-profit-assigning-work | |
827,https://leetcode-cn.com/problems/making-a-large-island | |
828,https://leetcode-cn.com/problems/count-unique-characters-of-all-substrings-of-a-given-string | |
829,https://leetcode-cn.com/problems/consecutive-numbers-sum | |
830,https://leetcode-cn.com/problems/positions-of-large-groups | |
831,https://leetcode-cn.com/problems/masking-personal-information | |
832,https://leetcode-cn.com/problems/flipping-an-image | |
833,https://leetcode-cn.com/problems/find-and-replace-in-string | |
834,https://leetcode-cn.com/problems/sum-of-distances-in-tree | |
835,https://leetcode-cn.com/problems/image-overlap | |
836,https://leetcode-cn.com/problems/rectangle-overlap | |
837,https://leetcode-cn.com/problems/new-21-game | |
838,https://leetcode-cn.com/problems/push-dominoes | |
839,https://leetcode-cn.com/problems/similar-string-groups | |
840,https://leetcode-cn.com/problems/magic-squares-in-grid | |
841,https://leetcode-cn.com/problems/keys-and-rooms | |
842,https://leetcode-cn.com/problems/split-array-into-fibonacci-sequence | |
843,https://leetcode-cn.com/problems/guess-the-word | |
844,https://leetcode-cn.com/problems/backspace-string-compare | |
845,https://leetcode-cn.com/problems/longest-mountain-in-array | |
846,https://leetcode-cn.com/problems/hand-of-straights | |
847,https://leetcode-cn.com/problems/shortest-path-visiting-all-nodes | |
848,https://leetcode-cn.com/problems/shifting-letters | |
849,https://leetcode-cn.com/problems/maximize-distance-to-closest-person | |
850,https://leetcode-cn.com/problems/rectangle-area-ii | |
851,https://leetcode-cn.com/problems/loud-and-rich | |
852,https://leetcode-cn.com/problems/peak-index-in-a-mountain-array | |
853,https://leetcode-cn.com/problems/car-fleet | |
854,https://leetcode-cn.com/problems/k-similar-strings | |
855,https://leetcode-cn.com/problems/exam-room | |
856,https://leetcode-cn.com/problems/score-of-parentheses | |
857,https://leetcode-cn.com/problems/minimum-cost-to-hire-k-workers | |
858,https://leetcode-cn.com/problems/mirror-reflection | |
859,https://leetcode-cn.com/problems/buddy-strings | |
860,https://leetcode-cn.com/problems/lemonade-change | |
861,https://leetcode-cn.com/problems/score-after-flipping-matrix | |
862,https://leetcode-cn.com/problems/shortest-subarray-with-sum-at-least-k | |
863,https://leetcode-cn.com/problems/all-nodes-distance-k-in-binary-tree | |
864,https://leetcode-cn.com/problems/shortest-path-to-get-all-keys | |
865,https://leetcode-cn.com/problems/smallest-subtree-with-all-the-deepest-nodes | |
866,https://leetcode-cn.com/problems/prime-palindrome | |
867,https://leetcode-cn.com/problems/transpose-matrix | |
868,https://leetcode-cn.com/problems/binary-gap | |
869,https://leetcode-cn.com/problems/reordered-power-of-2 | |
870,https://leetcode-cn.com/problems/advantage-shuffle | |
871,https://leetcode-cn.com/problems/minimum-number-of-refueling-stops | |
872,https://leetcode-cn.com/problems/leaf-similar-trees | |
873,https://leetcode-cn.com/problems/length-of-longest-fibonacci-subsequence | |
874,https://leetcode-cn.com/problems/walking-robot-simulation | |
875,https://leetcode-cn.com/problems/koko-eating-bananas | |
876,https://leetcode-cn.com/problems/middle-of-the-linked-list | |
877,https://leetcode-cn.com/problems/stone-game | |
878,https://leetcode-cn.com/problems/nth-magical-number | |
879,https://leetcode-cn.com/problems/profitable-schemes | |
880,https://leetcode-cn.com/problems/decoded-string-at-index | |
881,https://leetcode-cn.com/problems/boats-to-save-people | |
882,https://leetcode-cn.com/problems/reachable-nodes-in-subdivided-graph | |
883,https://leetcode-cn.com/problems/projection-area-of-3d-shapes | |
884,https://leetcode-cn.com/problems/uncommon-words-from-two-sentences | |
885,https://leetcode-cn.com/problems/spiral-matrix-iii | |
886,https://leetcode-cn.com/problems/possible-bipartition | |
887,https://leetcode-cn.com/problems/super-egg-drop | |
888,https://leetcode-cn.com/problems/fair-candy-swap | |
889,https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-postorder-traversal | |
890,https://leetcode-cn.com/problems/find-and-replace-pattern | |
891,https://leetcode-cn.com/problems/sum-of-subsequence-widths | |
892,https://leetcode-cn.com/problems/surface-area-of-3d-shapes | |
893,https://leetcode-cn.com/problems/groups-of-special-equivalent-strings | |
894,https://leetcode-cn.com/problems/all-possible-full-binary-trees | |
895,https://leetcode-cn.com/problems/maximum-frequency-stack | |
896,https://leetcode-cn.com/problems/monotonic-array | |
897,https://leetcode-cn.com/problems/increasing-order-search-tree | |
898,https://leetcode-cn.com/problems/bitwise-ors-of-subarrays | |
899,https://leetcode-cn.com/problems/orderly-queue | |
900,https://leetcode-cn.com/problems/rle-iterator | |
901,https://leetcode-cn.com/problems/online-stock-span | |
902,https://leetcode-cn.com/problems/numbers-at-most-n-given-digit-set | |
903,https://leetcode-cn.com/problems/valid-permutations-for-di-sequence | |
904,https://leetcode-cn.com/problems/fruit-into-baskets | |
905,https://leetcode-cn.com/problems/sort-array-by-parity | |
906,https://leetcode-cn.com/problems/super-palindromes | |
907,https://leetcode-cn.com/problems/sum-of-subarray-minimums | |
908,https://leetcode-cn.com/problems/smallest-range-i | |
909,https://leetcode-cn.com/problems/snakes-and-ladders | |
910,https://leetcode-cn.com/problems/smallest-range-ii | |
911,https://leetcode-cn.com/problems/online-election | |
912,https://leetcode-cn.com/problems/sort-an-array | |
913,https://leetcode-cn.com/problems/cat-and-mouse | |
914,https://leetcode-cn.com/problems/x-of-a-kind-in-a-deck-of-cards | |
915,https://leetcode-cn.com/problems/partition-array-into-disjoint-intervals | |
916,https://leetcode-cn.com/problems/word-subsets | |
917,https://leetcode-cn.com/problems/reverse-only-letters | |
918,https://leetcode-cn.com/problems/maximum-sum-circular-subarray | |
919,https://leetcode-cn.com/problems/complete-binary-tree-inserter | |
920,https://leetcode-cn.com/problems/number-of-music-playlists | |
921,https://leetcode-cn.com/problems/minimum-add-to-make-parentheses-valid | |
922,https://leetcode-cn.com/problems/sort-array-by-parity-ii | |
923,https://leetcode-cn.com/problems/3sum-with-multiplicity | |
924,https://leetcode-cn.com/problems/minimize-malware-spread | |
925,https://leetcode-cn.com/problems/long-pressed-name | |
926,https://leetcode-cn.com/problems/flip-string-to-monotone-increasing | |
927,https://leetcode-cn.com/problems/three-equal-parts | |
928,https://leetcode-cn.com/problems/minimize-malware-spread-ii | |
929,https://leetcode-cn.com/problems/unique-email-addresses | |
930,https://leetcode-cn.com/problems/binary-subarrays-with-sum | |
931,https://leetcode-cn.com/problems/minimum-falling-path-sum | |
932,https://leetcode-cn.com/problems/beautiful-array | |
933,https://leetcode-cn.com/problems/number-of-recent-calls | |
934,https://leetcode-cn.com/problems/shortest-bridge | |
935,https://leetcode-cn.com/problems/knight-dialer | |
936,https://leetcode-cn.com/problems/stamping-the-sequence | |
937,https://leetcode-cn.com/problems/reorder-data-in-log-files | |
938,https://leetcode-cn.com/problems/range-sum-of-bst | |
939,https://leetcode-cn.com/problems/minimum-area-rectangle | |
940,https://leetcode-cn.com/problems/distinct-subsequences-ii | |
941,https://leetcode-cn.com/problems/valid-mountain-array | |
942,https://leetcode-cn.com/problems/di-string-match | |
943,https://leetcode-cn.com/problems/find-the-shortest-superstring | |
944,https://leetcode-cn.com/problems/delete-columns-to-make-sorted | |
945,https://leetcode-cn.com/problems/minimum-increment-to-make-array-unique | |
946,https://leetcode-cn.com/problems/validate-stack-sequences | |
947,https://leetcode-cn.com/problems/most-stones-removed-with-same-row-or-column | |
948,https://leetcode-cn.com/problems/bag-of-tokens | |
949,https://leetcode-cn.com/problems/largest-time-for-given-digits | |
950,https://leetcode-cn.com/problems/reveal-cards-in-increasing-order | |
951,https://leetcode-cn.com/problems/flip-equivalent-binary-trees | |
952,https://leetcode-cn.com/problems/largest-component-size-by-common-factor | |
953,https://leetcode-cn.com/problems/verifying-an-alien-dictionary | |
954,https://leetcode-cn.com/problems/array-of-doubled-pairs | |
955,https://leetcode-cn.com/problems/delete-columns-to-make-sorted-ii | |
956,https://leetcode-cn.com/problems/tallest-billboard | |
957,https://leetcode-cn.com/problems/prison-cells-after-n-days | |
958,https://leetcode-cn.com/problems/check-completeness-of-a-binary-tree | |
959,https://leetcode-cn.com/problems/regions-cut-by-slashes | |
960,https://leetcode-cn.com/problems/delete-columns-to-make-sorted-iii | |
961,https://leetcode-cn.com/problems/n-repeated-element-in-size-2n-array | |
962,https://leetcode-cn.com/problems/maximum-width-ramp | |
963,https://leetcode-cn.com/problems/minimum-area-rectangle-ii | |
964,https://leetcode-cn.com/problems/least-operators-to-express-number | |
965,https://leetcode-cn.com/problems/univalued-binary-tree | |
966,https://leetcode-cn.com/problems/vowel-spellchecker | |
967,https://leetcode-cn.com/problems/numbers-with-same-consecutive-differences | |
968,https://leetcode-cn.com/problems/binary-tree-cameras | |
969,https://leetcode-cn.com/problems/pancake-sorting | |
970,https://leetcode-cn.com/problems/powerful-integers | |
971,https://leetcode-cn.com/problems/flip-binary-tree-to-match-preorder-traversal | |
972,https://leetcode-cn.com/problems/equal-rational-numbers | |
973,https://leetcode-cn.com/problems/k-closest-points-to-origin | |
974,https://leetcode-cn.com/problems/subarray-sums-divisible-by-k | |
975,https://leetcode-cn.com/problems/odd-even-jump | |
976,https://leetcode-cn.com/problems/largest-perimeter-triangle | |
977,https://leetcode-cn.com/problems/squares-of-a-sorted-array | |
978,https://leetcode-cn.com/problems/longest-turbulent-subarray | |
979,https://leetcode-cn.com/problems/distribute-coins-in-binary-tree | |
980,https://leetcode-cn.com/problems/unique-paths-iii | |
981,https://leetcode-cn.com/problems/time-based-key-value-store | |
982,https://leetcode-cn.com/problems/triples-with-bitwise-and-equal-to-zero | |
983,https://leetcode-cn.com/problems/minimum-cost-for-tickets | |
984,https://leetcode-cn.com/problems/string-without-aaa-or-bbb | |
985,https://leetcode-cn.com/problems/sum-of-even-numbers-after-queries | |
986,https://leetcode-cn.com/problems/interval-list-intersections | |
987,https://leetcode-cn.com/problems/vertical-order-traversal-of-a-binary-tree | |
988,https://leetcode-cn.com/problems/smallest-string-starting-from-leaf | |
989,https://leetcode-cn.com/problems/add-to-array-form-of-integer | |
990,https://leetcode-cn.com/problems/satisfiability-of-equality-equations | |
991,https://leetcode-cn.com/problems/broken-calculator | |
992,https://leetcode-cn.com/problems/subarrays-with-k-different-integers | |
993,https://leetcode-cn.com/problems/cousins-in-binary-tree | |
994,https://leetcode-cn.com/problems/rotting-oranges | |
995,https://leetcode-cn.com/problems/minimum-number-of-k-consecutive-bit-flips | |
996,https://leetcode-cn.com/problems/number-of-squareful-arrays | |
997,https://leetcode-cn.com/problems/find-the-town-judge | |
998,https://leetcode-cn.com/problems/maximum-binary-tree-ii | |
999,https://leetcode-cn.com/problems/available-captures-for-rook | |
1000,https://leetcode-cn.com/problems/minimum-cost-to-merge-stones | |
1001,https://leetcode-cn.com/problems/grid-illumination | |
1002,https://leetcode-cn.com/problems/find-common-characters | |
1003,https://leetcode-cn.com/problems/check-if-word-is-valid-after-substitutions | |
1004,https://leetcode-cn.com/problems/max-consecutive-ones-iii | |
1005,https://leetcode-cn.com/problems/maximize-sum-of-array-after-k-negations | |
1006,https://leetcode-cn.com/problems/clumsy-factorial | |
1007,https://leetcode-cn.com/problems/minimum-domino-rotations-for-equal-row | |
1008,https://leetcode-cn.com/problems/construct-binary-search-tree-from-preorder-traversal | |
1009,https://leetcode-cn.com/problems/complement-of-base-10-integer | |
1010,https://leetcode-cn.com/problems/pairs-of-songs-with-total-durations-divisible-by-60 | |
1011,https://leetcode-cn.com/problems/capacity-to-ship-packages-within-d-days | |
1012,https://leetcode-cn.com/problems/numbers-with-repeated-digits | |
1013,https://leetcode-cn.com/problems/partition-array-into-three-parts-with-equal-sum | |
1014,https://leetcode-cn.com/problems/best-sightseeing-pair | |
1015,https://leetcode-cn.com/problems/smallest-integer-divisible-by-k | |
1016,https://leetcode-cn.com/problems/binary-string-with-substrings-representing-1-to-n | |
1017,https://leetcode-cn.com/problems/convert-to-base-2 | |
1018,https://leetcode-cn.com/problems/binary-prefix-divisible-by-5 | |
1019,https://leetcode-cn.com/problems/next-greater-node-in-linked-list | |
1020,https://leetcode-cn.com/problems/number-of-enclaves | |
1021,https://leetcode-cn.com/problems/remove-outermost-parentheses | |
1022,https://leetcode-cn.com/problems/sum-of-root-to-leaf-binary-numbers | |
1023,https://leetcode-cn.com/problems/camelcase-matching | |
1024,https://leetcode-cn.com/problems/video-stitching | |
1025,https://leetcode-cn.com/problems/divisor-game | |
1026,https://leetcode-cn.com/problems/maximum-difference-between-node-and-ancestor | |
1027,https://leetcode-cn.com/problems/longest-arithmetic-subsequence | |
1028,https://leetcode-cn.com/problems/recover-a-tree-from-preorder-traversal | |
1029,https://leetcode-cn.com/problems/two-city-scheduling | |
1030,https://leetcode-cn.com/problems/matrix-cells-in-distance-order | |
1031,https://leetcode-cn.com/problems/maximum-sum-of-two-non-overlapping-subarrays | |
1032,https://leetcode-cn.com/problems/stream-of-characters | |
1033,https://leetcode-cn.com/problems/moving-stones-until-consecutive | |
1034,https://leetcode-cn.com/problems/coloring-a-border | |
1035,https://leetcode-cn.com/problems/uncrossed-lines | |
1036,https://leetcode-cn.com/problems/escape-a-large-maze | |
1037,https://leetcode-cn.com/problems/valid-boomerang | |
1038,https://leetcode-cn.com/problems/binary-search-tree-to-greater-sum-tree | |
1039,https://leetcode-cn.com/problems/minimum-score-triangulation-of-polygon | |
1040,https://leetcode-cn.com/problems/moving-stones-until-consecutive-ii | |
1041,https://leetcode-cn.com/problems/robot-bounded-in-circle | |
1042,https://leetcode-cn.com/problems/flower-planting-with-no-adjacent | |
1043,https://leetcode-cn.com/problems/partition-array-for-maximum-sum | |
1044,https://leetcode-cn.com/problems/longest-duplicate-substring | |
1045,https://leetcode-cn.com/problems/customers-who-bought-all-products | |
1046,https://leetcode-cn.com/problems/last-stone-weight | |
1047,https://leetcode-cn.com/problems/remove-all-adjacent-duplicates-in-string | |
1048,https://leetcode-cn.com/problems/longest-string-chain | |
1049,https://leetcode-cn.com/problems/last-stone-weight-ii | |
1050,https://leetcode-cn.com/problems/actors-and-directors-who-cooperated-at-least-three-times | |
1051,https://leetcode-cn.com/problems/height-checker | |
1052,https://leetcode-cn.com/problems/grumpy-bookstore-owner | |
1053,https://leetcode-cn.com/problems/previous-permutation-with-one-swap | |
1054,https://leetcode-cn.com/problems/distant-barcodes | |
1055,https://leetcode-cn.com/problems/shortest-way-to-form-string | |
1056,https://leetcode-cn.com/problems/confusing-number | |
1057,https://leetcode-cn.com/problems/campus-bikes | |
1058,https://leetcode-cn.com/problems/minimize-rounding-error-to-meet-target | |
1059,https://leetcode-cn.com/problems/all-paths-from-source-lead-to-destination | |
1060,https://leetcode-cn.com/problems/missing-element-in-sorted-array | |
1061,https://leetcode-cn.com/problems/lexicographically-smallest-equivalent-string | |
1062,https://leetcode-cn.com/problems/longest-repeating-substring | |
1063,https://leetcode-cn.com/problems/number-of-valid-subarrays | |
1064,https://leetcode-cn.com/problems/fixed-point | |
1065,https://leetcode-cn.com/problems/index-pairs-of-a-string | |
1066,https://leetcode-cn.com/problems/campus-bikes-ii | |
1067,https://leetcode-cn.com/problems/digit-count-in-range | |
1068,https://leetcode-cn.com/problems/product-sales-analysis-i | |
1069,https://leetcode-cn.com/problems/product-sales-analysis-ii | |
1070,https://leetcode-cn.com/problems/product-sales-analysis-iii | |
1071,https://leetcode-cn.com/problems/greatest-common-divisor-of-strings | |
1072,https://leetcode-cn.com/problems/flip-columns-for-maximum-number-of-equal-rows | |
1073,https://leetcode-cn.com/problems/adding-two-negabinary-numbers | |
1074,https://leetcode-cn.com/problems/number-of-submatrices-that-sum-to-target | |
1075,https://leetcode-cn.com/problems/project-employees-i | |
1076,https://leetcode-cn.com/problems/project-employees-ii | |
1077,https://leetcode-cn.com/problems/project-employees-iii | |
1078,https://leetcode-cn.com/problems/occurrences-after-bigram | |
1079,https://leetcode-cn.com/problems/letter-tile-possibilities | |
1080,https://leetcode-cn.com/problems/insufficient-nodes-in-root-to-leaf-paths | |
1081,https://leetcode-cn.com/problems/smallest-subsequence-of-distinct-characters | |
1082,https://leetcode-cn.com/problems/sales-analysis-i | |
1083,https://leetcode-cn.com/problems/sales-analysis-ii | |
1084,https://leetcode-cn.com/problems/sales-analysis-iii | |
1085,https://leetcode-cn.com/problems/sum-of-digits-in-the-minimum-number | |
1086,https://leetcode-cn.com/problems/high-five | |
1087,https://leetcode-cn.com/problems/brace-expansion | |
1088,https://leetcode-cn.com/problems/confusing-number-ii | |
1089,https://leetcode-cn.com/problems/duplicate-zeros | |
1090,https://leetcode-cn.com/problems/largest-values-from-labels | |
1091,https://leetcode-cn.com/problems/shortest-path-in-binary-matrix | |
1092,https://leetcode-cn.com/problems/shortest-common-supersequence | |
1093,https://leetcode-cn.com/problems/statistics-from-a-large-sample | |
1094,https://leetcode-cn.com/problems/car-pooling | |
1095,https://leetcode-cn.com/problems/find-in-mountain-array | |
1096,https://leetcode-cn.com/problems/brace-expansion-ii | |
1097,https://leetcode-cn.com/problems/game-play-analysis-v | |
1098,https://leetcode-cn.com/problems/unpopular-books | |
1099,https://leetcode-cn.com/problems/two-sum-less-than-k | |
1100,https://leetcode-cn.com/problems/find-k-length-substrings-with-no-repeated-characters | |
1101,https://leetcode-cn.com/problems/the-earliest-moment-when-everyone-become-friends | |
1102,https://leetcode-cn.com/problems/path-with-maximum-minimum-value | |
1103,https://leetcode-cn.com/problems/distribute-candies-to-people | |
1104,https://leetcode-cn.com/problems/path-in-zigzag-labelled-binary-tree | |
1105,https://leetcode-cn.com/problems/filling-bookcase-shelves | |
1106,https://leetcode-cn.com/problems/parsing-a-boolean-expression | |
1107,https://leetcode-cn.com/problems/new-users-daily-count | |
1108,https://leetcode-cn.com/problems/defanging-an-ip-address | |
1109,https://leetcode-cn.com/problems/corporate-flight-bookings | |
1110,https://leetcode-cn.com/problems/delete-nodes-and-return-forest | |
1111,https://leetcode-cn.com/problems/maximum-nesting-depth-of-two-valid-parentheses-strings | |
1112,https://leetcode-cn.com/problems/highest-grade-for-each-student | |
1113,https://leetcode-cn.com/problems/reported-posts | |
1114,https://leetcode-cn.com/problems/print-in-order | |
1115,https://leetcode-cn.com/problems/print-foobar-alternately | |
1116,https://leetcode-cn.com/problems/print-zero-even-odd | |
1117,https://leetcode-cn.com/problems/building-h2o | |
1118,https://leetcode-cn.com/problems/number-of-days-in-a-month | |
1119,https://leetcode-cn.com/problems/remove-vowels-from-a-string | |
1120,https://leetcode-cn.com/problems/maximum-average-subtree | |
1121,https://leetcode-cn.com/problems/divide-array-into-increasing-sequences | |
1122,https://leetcode-cn.com/problems/relative-sort-array | |
1123,https://leetcode-cn.com/problems/lowest-common-ancestor-of-deepest-leaves | |
1124,https://leetcode-cn.com/problems/longest-well-performing-interval | |
1125,https://leetcode-cn.com/problems/smallest-sufficient-team | |
1126,https://leetcode-cn.com/problems/active-businesses | |
1127,https://leetcode-cn.com/problems/user-purchase-platform | |
1128,https://leetcode-cn.com/problems/number-of-equivalent-domino-pairs | |
1129,https://leetcode-cn.com/problems/shortest-path-with-alternating-colors | |
1130,https://leetcode-cn.com/problems/minimum-cost-tree-from-leaf-values | |
1131,https://leetcode-cn.com/problems/maximum-of-absolute-value-expression | |
1132,https://leetcode-cn.com/problems/reported-posts-ii | |
1133,https://leetcode-cn.com/problems/largest-unique-number | |
1134,https://leetcode-cn.com/problems/armstrong-number | |
1135,https://leetcode-cn.com/problems/connecting-cities-with-minimum-cost | |
1136,https://leetcode-cn.com/problems/parallel-courses | |
1137,https://leetcode-cn.com/problems/n-th-tribonacci-number | |
1138,https://leetcode-cn.com/problems/alphabet-board-path | |
1139,https://leetcode-cn.com/problems/largest-1-bordered-square | |
1140,https://leetcode-cn.com/problems/stone-game-ii | |
1141,https://leetcode-cn.com/problems/user-activity-for-the-past-30-days-i | |
1142,https://leetcode-cn.com/problems/user-activity-for-the-past-30-days-ii | |
1143,https://leetcode-cn.com/problems/longest-common-subsequence | |
1144,https://leetcode-cn.com/problems/decrease-elements-to-make-array-zigzag | |
1145,https://leetcode-cn.com/problems/binary-tree-coloring-game | |
1146,https://leetcode-cn.com/problems/snapshot-array | |
1147,https://leetcode-cn.com/problems/longest-chunked-palindrome-decomposition | |
1148,https://leetcode-cn.com/problems/article-views-i | |
1149,https://leetcode-cn.com/problems/article-views-ii | |
1150,https://leetcode-cn.com/problems/check-if-a-number-is-majority-element-in-a-sorted-array | |
1151,https://leetcode-cn.com/problems/minimum-swaps-to-group-all-1s-together | |
1152,https://leetcode-cn.com/problems/analyze-user-website-visit-pattern | |
1153,https://leetcode-cn.com/problems/string-transforms-into-another-string | |
1154,https://leetcode-cn.com/problems/day-of-the-year | |
1155,https://leetcode-cn.com/problems/number-of-dice-rolls-with-target-sum | |
1156,https://leetcode-cn.com/problems/swap-for-longest-repeated-character-substring | |
1157,https://leetcode-cn.com/problems/online-majority-element-in-subarray | |
1158,https://leetcode-cn.com/problems/market-analysis-i | |
1159,https://leetcode-cn.com/problems/market-analysis-ii | |
1160,https://leetcode-cn.com/problems/find-words-that-can-be-formed-by-characters | |
1161,https://leetcode-cn.com/problems/maximum-level-sum-of-a-binary-tree | |
1162,https://leetcode-cn.com/problems/as-far-from-land-as-possible | |
1163,https://leetcode-cn.com/problems/last-substring-in-lexicographical-order | |
1164,https://leetcode-cn.com/problems/product-price-at-a-given-date | |
1165,https://leetcode-cn.com/problems/single-row-keyboard | |
1166,https://leetcode-cn.com/problems/design-file-system | |
1167,https://leetcode-cn.com/problems/minimum-cost-to-connect-sticks | |
1168,https://leetcode-cn.com/problems/optimize-water-distribution-in-a-village | |
1169,https://leetcode-cn.com/problems/invalid-transactions | |
1170,https://leetcode-cn.com/problems/compare-strings-by-frequency-of-the-smallest-character | |
1171,https://leetcode-cn.com/problems/remove-zero-sum-consecutive-nodes-from-linked-list | |
1172,https://leetcode-cn.com/problems/dinner-plate-stacks | |
1173,https://leetcode-cn.com/problems/immediate-food-delivery-i | |
1174,https://leetcode-cn.com/problems/immediate-food-delivery-ii | |
1175,https://leetcode-cn.com/problems/prime-arrangements | |
1176,https://leetcode-cn.com/problems/diet-plan-performance | |
1177,https://leetcode-cn.com/problems/can-make-palindrome-from-substring | |
1178,https://leetcode-cn.com/problems/number-of-valid-words-for-each-puzzle | |
1179,https://leetcode-cn.com/problems/reformat-department-table | |
1180,https://leetcode-cn.com/problems/count-substrings-with-only-one-distinct-letter | |
1181,https://leetcode-cn.com/problems/before-and-after-puzzle | |
1182,https://leetcode-cn.com/problems/shortest-distance-to-target-color | |
1183,https://leetcode-cn.com/problems/maximum-number-of-ones | |
1184,https://leetcode-cn.com/problems/distance-between-bus-stops | |
1185,https://leetcode-cn.com/problems/day-of-the-week | |
1186,https://leetcode-cn.com/problems/maximum-subarray-sum-with-one-deletion | |
1187,https://leetcode-cn.com/problems/make-array-strictly-increasing | |
1188,https://leetcode-cn.com/problems/design-bounded-blocking-queue | |
1189,https://leetcode-cn.com/problems/maximum-number-of-balloons | |
1190,https://leetcode-cn.com/problems/reverse-substrings-between-each-pair-of-parentheses | |
1191,https://leetcode-cn.com/problems/k-concatenation-maximum-sum | |
1192,https://leetcode-cn.com/problems/critical-connections-in-a-network | |
1193,https://leetcode-cn.com/problems/monthly-transactions-i | |
1194,https://leetcode-cn.com/problems/tournament-winners | |
1195,https://leetcode-cn.com/problems/fizz-buzz-multithreaded | |
1196,https://leetcode-cn.com/problems/how-many-apples-can-you-put-into-the-basket | |
1197,https://leetcode-cn.com/problems/minimum-knight-moves | |
1198,https://leetcode-cn.com/problems/find-smallest-common-element-in-all-rows | |
1199,https://leetcode-cn.com/problems/minimum-time-to-build-blocks | |
1200,https://leetcode-cn.com/problems/minimum-absolute-difference | |
1201,https://leetcode-cn.com/problems/ugly-number-iii | |
1202,https://leetcode-cn.com/problems/smallest-string-with-swaps | |
1203,https://leetcode-cn.com/problems/sort-items-by-groups-respecting-dependencies | |
1204,https://leetcode-cn.com/problems/last-person-to-fit-in-the-elevator | |
1205,https://leetcode-cn.com/problems/monthly-transactions-ii | |
1206,https://leetcode-cn.com/problems/design-skiplist | |
1207,https://leetcode-cn.com/problems/unique-number-of-occurrences | |
1208,https://leetcode-cn.com/problems/get-equal-substrings-within-budget | |
1209,https://leetcode-cn.com/problems/remove-all-adjacent-duplicates-in-string-ii | |
1210,https://leetcode-cn.com/problems/minimum-moves-to-reach-target-with-rotations | |
1211,https://leetcode-cn.com/problems/queries-quality-and-percentage | |
1212,https://leetcode-cn.com/problems/team-scores-in-football-tournament | |
1213,https://leetcode-cn.com/problems/intersection-of-three-sorted-arrays | |
1214,https://leetcode-cn.com/problems/two-sum-bsts | |
1215,https://leetcode-cn.com/problems/stepping-numbers | |
1216,https://leetcode-cn.com/problems/valid-palindrome-iii | |
1217,https://leetcode-cn.com/problems/minimum-cost-to-move-chips-to-the-same-position | |
1218,https://leetcode-cn.com/problems/longest-arithmetic-subsequence-of-given-difference | |
1219,https://leetcode-cn.com/problems/path-with-maximum-gold | |
1220,https://leetcode-cn.com/problems/count-vowels-permutation | |
1221,https://leetcode-cn.com/problems/split-a-string-in-balanced-strings | |
1222,https://leetcode-cn.com/problems/queens-that-can-attack-the-king | |
1223,https://leetcode-cn.com/problems/dice-roll-simulation | |
1224,https://leetcode-cn.com/problems/maximum-equal-frequency | |
1225,https://leetcode-cn.com/problems/report-contiguous-dates | |
1226,https://leetcode-cn.com/problems/the-dining-philosophers | |
1227,https://leetcode-cn.com/problems/airplane-seat-assignment-probability | |
1228,https://leetcode-cn.com/problems/missing-number-in-arithmetic-progression | |
1229,https://leetcode-cn.com/problems/meeting-scheduler | |
1230,https://leetcode-cn.com/problems/toss-strange-coins | |
1231,https://leetcode-cn.com/problems/divide-chocolate | |
1232,https://leetcode-cn.com/problems/check-if-it-is-a-straight-line | |
1233,https://leetcode-cn.com/problems/remove-sub-folders-from-the-filesystem | |
1234,https://leetcode-cn.com/problems/replace-the-substring-for-balanced-string | |
1235,https://leetcode-cn.com/problems/maximum-profit-in-job-scheduling | |
1236,https://leetcode-cn.com/problems/web-crawler | |
1237,https://leetcode-cn.com/problems/find-positive-integer-solution-for-a-given-equation | |
1238,https://leetcode-cn.com/problems/circular-permutation-in-binary-representation | |
1239,https://leetcode-cn.com/problems/maximum-length-of-a-concatenated-string-with-unique-characters | |
1240,https://leetcode-cn.com/problems/tiling-a-rectangle-with-the-fewest-squares | |
1241,https://leetcode-cn.com/problems/number-of-comments-per-post | |
1242,https://leetcode-cn.com/problems/web-crawler-multithreaded | |
1243,https://leetcode-cn.com/problems/array-transformation | |
1244,https://leetcode-cn.com/problems/design-a-leaderboard | |
1245,https://leetcode-cn.com/problems/tree-diameter | |
1246,https://leetcode-cn.com/problems/palindrome-removal | |
1247,https://leetcode-cn.com/problems/minimum-swaps-to-make-strings-equal | |
1248,https://leetcode-cn.com/problems/count-number-of-nice-subarrays | |
1249,https://leetcode-cn.com/problems/minimum-remove-to-make-valid-parentheses | |
1250,https://leetcode-cn.com/problems/check-if-it-is-a-good-array | |
1251,https://leetcode-cn.com/problems/average-selling-price | |
1252,https://leetcode-cn.com/problems/cells-with-odd-values-in-a-matrix | |
1253,https://leetcode-cn.com/problems/reconstruct-a-2-row-binary-matrix | |
1254,https://leetcode-cn.com/problems/number-of-closed-islands | |
1255,https://leetcode-cn.com/problems/maximum-score-words-formed-by-letters | |
1256,https://leetcode-cn.com/problems/encode-number | |
1257,https://leetcode-cn.com/problems/smallest-common-region | |
1258,https://leetcode-cn.com/problems/synonymous-sentences | |
1259,https://leetcode-cn.com/problems/handshakes-that-dont-cross | |
1260,https://leetcode-cn.com/problems/shift-2d-grid | |
1261,https://leetcode-cn.com/problems/find-elements-in-a-contaminated-binary-tree | |
1262,https://leetcode-cn.com/problems/greatest-sum-divisible-by-three | |
1263,https://leetcode-cn.com/problems/minimum-moves-to-move-a-box-to-their-target-location | |
1264,https://leetcode-cn.com/problems/page-recommendations | |
1265,https://leetcode-cn.com/problems/print-immutable-linked-list-in-reverse | |
1266,https://leetcode-cn.com/problems/minimum-time-visiting-all-points | |
1267,https://leetcode-cn.com/problems/count-servers-that-communicate | |
1268,https://leetcode-cn.com/problems/search-suggestions-system | |
1269,https://leetcode-cn.com/problems/number-of-ways-to-stay-in-the-same-place-after-some-steps | |
1270,https://leetcode-cn.com/problems/all-people-report-to-the-given-manager | |
1271,https://leetcode-cn.com/problems/hexspeak | |
1272,https://leetcode-cn.com/problems/remove-interval | |
1273,https://leetcode-cn.com/problems/delete-tree-nodes | |
1274,https://leetcode-cn.com/problems/number-of-ships-in-a-rectangle | |
1275,https://leetcode-cn.com/problems/find-winner-on-a-tic-tac-toe-game | |
1276,https://leetcode-cn.com/problems/number-of-burgers-with-no-waste-of-ingredients | |
1277,https://leetcode-cn.com/problems/count-square-submatrices-with-all-ones | |
1278,https://leetcode-cn.com/problems/palindrome-partitioning-iii | |
1279,https://leetcode-cn.com/problems/traffic-light-controlled-intersection | |
1280,https://leetcode-cn.com/problems/students-and-examinations | |
1281,https://leetcode-cn.com/problems/subtract-the-product-and-sum-of-digits-of-an-integer | |
1282,https://leetcode-cn.com/problems/group-the-people-given-the-group-size-they-belong-to | |
1283,https://leetcode-cn.com/problems/find-the-smallest-divisor-given-a-threshold | |
1284,https://leetcode-cn.com/problems/minimum-number-of-flips-to-convert-binary-matrix-to-zero-matrix | |
1285,https://leetcode-cn.com/problems/find-the-start-and-end-number-of-continuous-ranges | |
1286,https://leetcode-cn.com/problems/iterator-for-combination | |
1287,https://leetcode-cn.com/problems/element-appearing-more-than-25-in-sorted-array | |
1288,https://leetcode-cn.com/problems/remove-covered-intervals | |
1289,https://leetcode-cn.com/problems/minimum-falling-path-sum-ii | |
1290,https://leetcode-cn.com/problems/convert-binary-number-in-a-linked-list-to-integer | |
1291,https://leetcode-cn.com/problems/sequential-digits | |
1292,https://leetcode-cn.com/problems/maximum-side-length-of-a-square-with-sum-less-than-or-equal-to-threshold | |
1293,https://leetcode-cn.com/problems/shortest-path-in-a-grid-with-obstacles-elimination | |
1294,https://leetcode-cn.com/problems/weather-type-in-each-country | |
1295,https://leetcode-cn.com/problems/find-numbers-with-even-number-of-digits | |
1296,https://leetcode-cn.com/problems/divide-array-in-sets-of-k-consecutive-numbers | |
1297,https://leetcode-cn.com/problems/maximum-number-of-occurrences-of-a-substring | |
1298,https://leetcode-cn.com/problems/maximum-candies-you-can-get-from-boxes | |
1299,https://leetcode-cn.com/problems/replace-elements-with-greatest-element-on-right-side | |
1300,https://leetcode-cn.com/problems/sum-of-mutated-array-closest-to-target | |
1301,https://leetcode-cn.com/problems/number-of-paths-with-max-score | |
1302,https://leetcode-cn.com/problems/deepest-leaves-sum | |
1303,https://leetcode-cn.com/problems/find-the-team-size | |
1304,https://leetcode-cn.com/problems/find-n-unique-integers-sum-up-to-zero | |
1305,https://leetcode-cn.com/problems/all-elements-in-two-binary-search-trees | |
1306,https://leetcode-cn.com/problems/jump-game-iii | |
1307,https://leetcode-cn.com/problems/verbal-arithmetic-puzzle | |
1308,https://leetcode-cn.com/problems/running-total-for-different-genders | |
1309,https://leetcode-cn.com/problems/decrypt-string-from-alphabet-to-integer-mapping | |
1310,https://leetcode-cn.com/problems/xor-queries-of-a-subarray | |
1311,https://leetcode-cn.com/problems/get-watched-videos-by-your-friends | |
1312,https://leetcode-cn.com/problems/minimum-insertion-steps-to-make-a-string-palindrome | |
1313,https://leetcode-cn.com/problems/decompress-run-length-encoded-list | |
1314,https://leetcode-cn.com/problems/matrix-block-sum | |
1315,https://leetcode-cn.com/problems/sum-of-nodes-with-even-valued-grandparent | |
1316,https://leetcode-cn.com/problems/distinct-echo-substrings | |
1317,https://leetcode-cn.com/problems/convert-integer-to-the-sum-of-two-no-zero-integers | |
1318,https://leetcode-cn.com/problems/minimum-flips-to-make-a-or-b-equal-to-c | |
1319,https://leetcode-cn.com/problems/number-of-operations-to-make-network-connected | |
1320,https://leetcode-cn.com/problems/minimum-distance-to-type-a-word-using-two-fingers | |
1321,https://leetcode-cn.com/problems/restaurant-growth | |
1322,https://leetcode-cn.com/problems/ads-performance | |
1323,https://leetcode-cn.com/problems/maximum-69-number | |
1324,https://leetcode-cn.com/problems/print-words-vertically | |
1325,https://leetcode-cn.com/problems/delete-leaves-with-a-given-value | |
1326,https://leetcode-cn.com/problems/minimum-number-of-taps-to-open-to-water-a-garden | |
1327,https://leetcode-cn.com/problems/list-the-products-ordered-in-a-period | |
1328,https://leetcode-cn.com/problems/break-a-palindrome | |
1329,https://leetcode-cn.com/problems/sort-the-matrix-diagonally | |
1330,https://leetcode-cn.com/problems/reverse-subarray-to-maximize-array-value | |
1331,https://leetcode-cn.com/problems/rank-transform-of-an-array | |
1332,https://leetcode-cn.com/problems/remove-palindromic-subsequences | |
1333,https://leetcode-cn.com/problems/filter-restaurants-by-vegan-friendly-price-and-distance | |
1334,https://leetcode-cn.com/problems/find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance | |
1335,https://leetcode-cn.com/problems/minimum-difficulty-of-a-job-schedule | |
1336,https://leetcode-cn.com/problems/number-of-transactions-per-visit | |
1337,https://leetcode-cn.com/problems/the-k-weakest-rows-in-a-matrix | |
1338,https://leetcode-cn.com/problems/reduce-array-size-to-the-half | |
1339,https://leetcode-cn.com/problems/maximum-product-of-splitted-binary-tree | |
1340,https://leetcode-cn.com/problems/jump-game-v | |
1341,https://leetcode-cn.com/problems/movie-rating | |
1342,https://leetcode-cn.com/problems/number-of-steps-to-reduce-a-number-to-zero | |
1343,https://leetcode-cn.com/problems/number-of-sub-arrays-of-size-k-and-average-greater-than-or-equal-to-threshold | |
1344,https://leetcode-cn.com/problems/angle-between-hands-of-a-clock | |
1345,https://leetcode-cn.com/problems/jump-game-iv | |
1346,https://leetcode-cn.com/problems/check-if-n-and-its-double-exist | |
1347,https://leetcode-cn.com/problems/minimum-number-of-steps-to-make-two-strings-anagram | |
1348,https://leetcode-cn.com/problems/tweet-counts-per-frequency | |
1349,https://leetcode-cn.com/problems/maximum-students-taking-exam | |
1350,https://leetcode-cn.com/problems/students-with-invalid-departments | |
1351,https://leetcode-cn.com/problems/count-negative-numbers-in-a-sorted-matrix | |
1352,https://leetcode-cn.com/problems/product-of-the-last-k-numbers | |
1353,https://leetcode-cn.com/problems/maximum-number-of-events-that-can-be-attended | |
1354,https://leetcode-cn.com/problems/construct-target-array-with-multiple-sums | |
1355,https://leetcode-cn.com/problems/activity-participants | |
1356,https://leetcode-cn.com/problems/sort-integers-by-the-number-of-1-bits | |
1357,https://leetcode-cn.com/problems/apply-discount-every-n-orders | |
1358,https://leetcode-cn.com/problems/number-of-substrings-containing-all-three-characters | |
1359,https://leetcode-cn.com/problems/count-all-valid-pickup-and-delivery-options | |
1360,https://leetcode-cn.com/problems/number-of-days-between-two-dates | |
1361,https://leetcode-cn.com/problems/validate-binary-tree-nodes | |
1362,https://leetcode-cn.com/problems/closest-divisors | |
1363,https://leetcode-cn.com/problems/largest-multiple-of-three | |
1364,https://leetcode-cn.com/problems/number-of-trusted-contacts-of-a-customer | |
1365,https://leetcode-cn.com/problems/how-many-numbers-are-smaller-than-the-current-number | |
1366,https://leetcode-cn.com/problems/rank-teams-by-votes | |
1367,https://leetcode-cn.com/problems/linked-list-in-binary-tree | |
1368,https://leetcode-cn.com/problems/minimum-cost-to-make-at-least-one-valid-path-in-a-grid | |
1369,https://leetcode-cn.com/problems/get-the-second-most-recent-activity | |
1370,https://leetcode-cn.com/problems/increasing-decreasing-string | |
1371,https://leetcode-cn.com/problems/find-the-longest-substring-containing-vowels-in-even-counts | |
1372,https://leetcode-cn.com/problems/longest-zigzag-path-in-a-binary-tree | |
1373,https://leetcode-cn.com/problems/maximum-sum-bst-in-binary-tree | |
1374,https://leetcode-cn.com/problems/generate-a-string-with-characters-that-have-odd-counts | |
1375,https://leetcode-cn.com/problems/bulb-switcher-iii | |
1376,https://leetcode-cn.com/problems/time-needed-to-inform-all-employees | |
1377,https://leetcode-cn.com/problems/frog-position-after-t-seconds | |
1378,https://leetcode-cn.com/problems/replace-employee-id-with-the-unique-identifier | |
1379,https://leetcode-cn.com/problems/find-a-corresponding-node-of-a-binary-tree-in-a-clone-of-that-tree | |
1380,https://leetcode-cn.com/problems/lucky-numbers-in-a-matrix | |
1381,https://leetcode-cn.com/problems/design-a-stack-with-increment-operation | |
1382,https://leetcode-cn.com/problems/balance-a-binary-search-tree | |
1383,https://leetcode-cn.com/problems/maximum-performance-of-a-team | |
1384,https://leetcode-cn.com/problems/total-sales-amount-by-year | |
1385,https://leetcode-cn.com/problems/find-the-distance-value-between-two-arrays | |
1386,https://leetcode-cn.com/problems/cinema-seat-allocation | |
1387,https://leetcode-cn.com/problems/sort-integers-by-the-power-value | |
1388,https://leetcode-cn.com/problems/pizza-with-3n-slices | |
1389,https://leetcode-cn.com/problems/create-target-array-in-the-given-order | |
1390,https://leetcode-cn.com/problems/four-divisors | |
1391,https://leetcode-cn.com/problems/check-if-there-is-a-valid-path-in-a-grid | |
1392,https://leetcode-cn.com/problems/longest-happy-prefix | |
1393,https://leetcode-cn.com/problems/capital-gainloss | |
1394,https://leetcode-cn.com/problems/find-lucky-integer-in-an-array | |
1395,https://leetcode-cn.com/problems/count-number-of-teams | |
1396,https://leetcode-cn.com/problems/design-underground-system | |
1397,https://leetcode-cn.com/problems/find-all-good-strings | |
1398,https://leetcode-cn.com/problems/customers-who-bought-products-a-and-b-but-not-c | |
1399,https://leetcode-cn.com/problems/count-largest-group | |
1400,https://leetcode-cn.com/problems/construct-k-palindrome-strings | |
1401,https://leetcode-cn.com/problems/circle-and-rectangle-overlapping | |
1402,https://leetcode-cn.com/problems/reducing-dishes | |
1403,https://leetcode-cn.com/problems/minimum-subsequence-in-non-increasing-order | |
1404,https://leetcode-cn.com/problems/number-of-steps-to-reduce-a-number-in-binary-representation-to-one | |
1405,https://leetcode-cn.com/problems/longest-happy-string | |
1406,https://leetcode-cn.com/problems/stone-game-iii | |
1407,https://leetcode-cn.com/problems/top-travellers | |
1408,https://leetcode-cn.com/problems/string-matching-in-an-array | |
1409,https://leetcode-cn.com/problems/queries-on-a-permutation-with-key | |
1410,https://leetcode-cn.com/problems/html-entity-parser | |
1411,https://leetcode-cn.com/problems/number-of-ways-to-paint-n-3-grid | |
1412,https://leetcode-cn.com/problems/find-the-quiet-students-in-all-exams | |
1413,https://leetcode-cn.com/problems/minimum-value-to-get-positive-step-by-step-sum | |
1414,https://leetcode-cn.com/problems/find-the-minimum-number-of-fibonacci-numbers-whose-sum-is-k | |
1415,https://leetcode-cn.com/problems/the-k-th-lexicographical-string-of-all-happy-strings-of-length-n | |
1416,https://leetcode-cn.com/problems/restore-the-array | |
1417,https://leetcode-cn.com/problems/reformat-the-string | |
1418,https://leetcode-cn.com/problems/display-table-of-food-orders-in-a-restaurant | |
1419,https://leetcode-cn.com/problems/minimum-number-of-frogs-croaking | |
1420,https://leetcode-cn.com/problems/build-array-where-you-can-find-the-maximum-exactly-k-comparisons | |
1421,https://leetcode-cn.com/problems/npv-queries | |
1422,https://leetcode-cn.com/problems/maximum-score-after-splitting-a-string | |
1423,https://leetcode-cn.com/problems/maximum-points-you-can-obtain-from-cards | |
1424,https://leetcode-cn.com/problems/diagonal-traverse-ii | |
1425,https://leetcode-cn.com/problems/constrained-subsequence-sum | |
1426,https://leetcode-cn.com/problems/counting-elements | |
1427,https://leetcode-cn.com/problems/perform-string-shifts | |
1428,https://leetcode-cn.com/problems/leftmost-column-with-at-least-a-one | |
1429,https://leetcode-cn.com/problems/first-unique-number | |
1430,https://leetcode-cn.com/problems/check-if-a-string-is-a-valid-sequence-from-root-to-leaves-path-in-a-binary-tree | |
1431,https://leetcode-cn.com/problems/kids-with-the-greatest-number-of-candies | |
1432,https://leetcode-cn.com/problems/max-difference-you-can-get-from-changing-an-integer | |
1433,https://leetcode-cn.com/problems/check-if-a-string-can-break-another-string | |
1434,https://leetcode-cn.com/problems/number-of-ways-to-wear-different-hats-to-each-other | |
1435,https://leetcode-cn.com/problems/create-a-session-bar-chart | |
1436,https://leetcode-cn.com/problems/destination-city | |
1437,https://leetcode-cn.com/problems/check-if-all-1s-are-at-least-length-k-places-away | |
1438,https://leetcode-cn.com/problems/longest-continuous-subarray-with-absolute-diff-less-than-or-equal-to-limit | |
1439,https://leetcode-cn.com/problems/find-the-kth-smallest-sum-of-a-matrix-with-sorted-rows | |
1440,https://leetcode-cn.com/problems/evaluate-boolean-expression | |
1441,https://leetcode-cn.com/problems/build-an-array-with-stack-operations | |
1442,https://leetcode-cn.com/problems/count-triplets-that-can-form-two-arrays-of-equal-xor | |
1443,https://leetcode-cn.com/problems/minimum-time-to-collect-all-apples-in-a-tree | |
1444,https://leetcode-cn.com/problems/number-of-ways-of-cutting-a-pizza | |
1445,https://leetcode-cn.com/problems/apples-oranges | |
1446,https://leetcode-cn.com/problems/consecutive-characters | |
1447,https://leetcode-cn.com/problems/simplified-fractions | |
1448,https://leetcode-cn.com/problems/count-good-nodes-in-binary-tree | |
1449,https://leetcode-cn.com/problems/form-largest-integer-with-digits-that-add-up-to-target | |
1450,https://leetcode-cn.com/problems/number-of-students-doing-homework-at-a-given-time | |
1451,https://leetcode-cn.com/problems/rearrange-words-in-a-sentence | |
1452,https://leetcode-cn.com/problems/people-whose-list-of-favorite-companies-is-not-a-subset-of-another-list | |
1453,https://leetcode-cn.com/problems/maximum-number-of-darts-inside-of-a-circular-dartboard | |
1454,https://leetcode-cn.com/problems/active-users | |
1455,https://leetcode-cn.com/problems/check-if-a-word-occurs-as-a-prefix-of-any-word-in-a-sentence | |
1456,https://leetcode-cn.com/problems/maximum-number-of-vowels-in-a-substring-of-given-length | |
1457,https://leetcode-cn.com/problems/pseudo-palindromic-paths-in-a-binary-tree | |
1458,https://leetcode-cn.com/problems/max-dot-product-of-two-subsequences | |
1459,https://leetcode-cn.com/problems/rectangles-area | |
1460,https://leetcode-cn.com/problems/make-two-arrays-equal-by-reversing-sub-arrays | |
1461,https://leetcode-cn.com/problems/check-if-a-string-contains-all-binary-codes-of-size-k | |
1462,https://leetcode-cn.com/problems/course-schedule-iv | |
1463,https://leetcode-cn.com/problems/cherry-pickup-ii | |
1464,https://leetcode-cn.com/problems/maximum-product-of-two-elements-in-an-array | |
1465,https://leetcode-cn.com/problems/maximum-area-of-a-piece-of-cake-after-horizontal-and-vertical-cuts | |
1466,https://leetcode-cn.com/problems/reorder-routes-to-make-all-paths-lead-to-the-city-zero | |
1467,https://leetcode-cn.com/problems/probability-of-a-two-boxes-having-the-same-number-of-distinct-balls | |
1468,https://leetcode-cn.com/problems/calculate-salaries | |
1469,https://leetcode-cn.com/problems/find-all-the-lonely-nodes | |
1470,https://leetcode-cn.com/problems/shuffle-the-array | |
1471,https://leetcode-cn.com/problems/the-k-strongest-values-in-an-array | |
1472,https://leetcode-cn.com/problems/design-browser-history | |
1473,https://leetcode-cn.com/problems/paint-house-iii | |
1474,https://leetcode-cn.com/problems/delete-n-nodes-after-m-nodes-of-a-linked-list | |
1475,https://leetcode-cn.com/problems/final-prices-with-a-special-discount-in-a-shop | |
1476,https://leetcode-cn.com/problems/subrectangle-queries | |
1477,https://leetcode-cn.com/problems/find-two-non-overlapping-sub-arrays-each-with-target-sum | |
1478,https://leetcode-cn.com/problems/allocate-mailboxes | |
1479,https://leetcode-cn.com/problems/sales-by-day-of-the-week | |
1480,https://leetcode-cn.com/problems/running-sum-of-1d-array | |
1481,https://leetcode-cn.com/problems/least-number-of-unique-integers-after-k-removals | |
1482,https://leetcode-cn.com/problems/minimum-number-of-days-to-make-m-bouquets | |
1483,https://leetcode-cn.com/problems/kth-ancestor-of-a-tree-node | |
1484,https://leetcode-cn.com/problems/clone-binary-tree-with-random-pointer | |
1485,https://leetcode-cn.com/problems/group-sold-products-by-the-date | |
1486,https://leetcode-cn.com/problems/xor-operation-in-an-array | |
1487,https://leetcode-cn.com/problems/making-file-names-unique | |
1488,https://leetcode-cn.com/problems/avoid-flood-in-the-city | |
1489,https://leetcode-cn.com/problems/find-critical-and-pseudo-critical-edges-in-minimum-spanning-tree | |
1490,https://leetcode-cn.com/problems/clone-n-ary-tree | |
1491,https://leetcode-cn.com/problems/average-salary-excluding-the-minimum-and-maximum-salary | |
1492,https://leetcode-cn.com/problems/the-kth-factor-of-n | |
1493,https://leetcode-cn.com/problems/longest-subarray-of-1s-after-deleting-one-element | |
1494,https://leetcode-cn.com/problems/parallel-courses-ii | |
1495,https://leetcode-cn.com/problems/friendly-movies-streamed-last-month | |
1496,https://leetcode-cn.com/problems/path-crossing | |
1497,https://leetcode-cn.com/problems/check-if-array-pairs-are-divisible-by-k | |
1498,https://leetcode-cn.com/problems/number-of-subsequences-that-satisfy-the-given-sum-condition | |
1499,https://leetcode-cn.com/problems/max-value-of-equation | |
1500,https://leetcode-cn.com/problems/design-a-file-sharing-system | |
1501,https://leetcode-cn.com/problems/countries-you-can-safely-invest-in | |
1502,https://leetcode-cn.com/problems/can-make-arithmetic-progression-from-sequence | |
1503,https://leetcode-cn.com/problems/last-moment-before-all-ants-fall-out-of-a-plank | |
1504,https://leetcode-cn.com/problems/count-submatrices-with-all-ones | |
1505,https://leetcode-cn.com/problems/minimum-possible-integer-after-at-most-k-adjacent-swaps-on-digits | |
1506,https://leetcode-cn.com/problems/find-root-of-n-ary-tree | |
1507,https://leetcode-cn.com/problems/reformat-date | |
1508,https://leetcode-cn.com/problems/range-sum-of-sorted-subarray-sums | |
1509,https://leetcode-cn.com/problems/minimum-difference-between-largest-and-smallest-value-in-three-moves | |
1510,https://leetcode-cn.com/problems/stone-game-iv | |
1511,https://leetcode-cn.com/problems/customer-order-frequency | |
1512,https://leetcode-cn.com/problems/number-of-good-pairs | |
1513,https://leetcode-cn.com/problems/number-of-substrings-with-only-1s | |
1514,https://leetcode-cn.com/problems/path-with-maximum-probability | |
1515,https://leetcode-cn.com/problems/best-position-for-a-service-centre | |
1516,https://leetcode-cn.com/problems/move-sub-tree-of-n-ary-tree | |
1517,https://leetcode-cn.com/problems/find-users-with-valid-e-mails | |
1518,https://leetcode-cn.com/problems/water-bottles | |
1519,https://leetcode-cn.com/problems/number-of-nodes-in-the-sub-tree-with-the-same-label | |
1520,https://leetcode-cn.com/problems/maximum-number-of-non-overlapping-substrings | |
1521,https://leetcode-cn.com/problems/find-a-value-of-a-mysterious-function-closest-to-target | |
1522,https://leetcode-cn.com/problems/diameter-of-n-ary-tree | |
1523,https://leetcode-cn.com/problems/count-odd-numbers-in-an-interval-range | |
1524,https://leetcode-cn.com/problems/number-of-sub-arrays-with-odd-sum | |
1525,https://leetcode-cn.com/problems/number-of-good-ways-to-split-a-string | |
1526,https://leetcode-cn.com/problems/minimum-number-of-increments-on-subarrays-to-form-a-target-array | |
1527,https://leetcode-cn.com/problems/patients-with-a-condition | |
1528,https://leetcode-cn.com/problems/shuffle-string | |
1529,https://leetcode-cn.com/problems/bulb-switcher-iv | |
1530,https://leetcode-cn.com/problems/number-of-good-leaf-nodes-pairs | |
1531,https://leetcode-cn.com/problems/string-compression-ii | |
1532,https://leetcode-cn.com/problems/the-most-recent-three-orders | |
1533,https://leetcode-cn.com/problems/find-the-index-of-the-large-integer | |
1534,https://leetcode-cn.com/problems/count-good-triplets | |
1535,https://leetcode-cn.com/problems/find-the-winner-of-an-array-game | |
1536,https://leetcode-cn.com/problems/minimum-swaps-to-arrange-a-binary-grid | |
1537,https://leetcode-cn.com/problems/get-the-maximum-score | |
1538,https://leetcode-cn.com/problems/guess-the-majority-in-a-hidden-array | |
1539,https://leetcode-cn.com/problems/kth-missing-positive-number | |
1540,https://leetcode-cn.com/problems/can-convert-string-in-k-moves | |
1541,https://leetcode-cn.com/problems/minimum-insertions-to-balance-a-parentheses-string | |
1542,https://leetcode-cn.com/problems/find-longest-awesome-substring | |
1543,https://leetcode-cn.com/problems/fix-product-name-format | |
1544,https://leetcode-cn.com/problems/make-the-string-great | |
1545,https://leetcode-cn.com/problems/find-kth-bit-in-nth-binary-string | |
1546,https://leetcode-cn.com/problems/maximum-number-of-non-overlapping-subarrays-with-sum-equals-target | |
1547,https://leetcode-cn.com/problems/minimum-cost-to-cut-a-stick | |
1548,https://leetcode-cn.com/problems/the-most-similar-path-in-a-graph | |
1549,https://leetcode-cn.com/problems/the-most-recent-orders-for-each-product | |
1550,https://leetcode-cn.com/problems/three-consecutive-odds | |
1551,https://leetcode-cn.com/problems/minimum-operations-to-make-array-equal | |
1552,https://leetcode-cn.com/problems/magnetic-force-between-two-balls | |
1553,https://leetcode-cn.com/problems/minimum-number-of-days-to-eat-n-oranges | |
1554,https://leetcode-cn.com/problems/strings-differ-by-one-character | |
1555,https://leetcode-cn.com/problems/bank-account-summary | |
1556,https://leetcode-cn.com/problems/thousand-separator | |
1557,https://leetcode-cn.com/problems/minimum-number-of-vertices-to-reach-all-nodes | |
1558,https://leetcode-cn.com/problems/minimum-numbers-of-function-calls-to-make-target-array | |
1559,https://leetcode-cn.com/problems/detect-cycles-in-2d-grid | |
1560,https://leetcode-cn.com/problems/most-visited-sector-in-a-circular-track | |
1561,https://leetcode-cn.com/problems/maximum-number-of-coins-you-can-get | |
1562,https://leetcode-cn.com/problems/find-latest-group-of-size-m | |
1563,https://leetcode-cn.com/problems/stone-game-v | |
1564,https://leetcode-cn.com/problems/put-boxes-into-the-warehouse-i | |
1565,https://leetcode-cn.com/problems/unique-orders-and-customers-per-month | |
1566,https://leetcode-cn.com/problems/detect-pattern-of-length-m-repeated-k-or-more-times | |
1567,https://leetcode-cn.com/problems/maximum-length-of-subarray-with-positive-product | |
1568,https://leetcode-cn.com/problems/minimum-number-of-days-to-disconnect-island | |
1569,https://leetcode-cn.com/problems/number-of-ways-to-reorder-array-to-get-same-bst | |
1570,https://leetcode-cn.com/problems/dot-product-of-two-sparse-vectors | |
1571,https://leetcode-cn.com/problems/warehouse-manager | |
1572,https://leetcode-cn.com/problems/matrix-diagonal-sum | |
1573,https://leetcode-cn.com/problems/number-of-ways-to-split-a-string | |
1574,https://leetcode-cn.com/problems/shortest-subarray-to-be-removed-to-make-array-sorted | |
1575,https://leetcode-cn.com/problems/count-all-possible-routes | |
1576,https://leetcode-cn.com/problems/replace-all-s-to-avoid-consecutive-repeating-characters | |
1577,https://leetcode-cn.com/problems/number-of-ways-where-square-of-number-is-equal-to-product-of-two-numbers | |
1578,https://leetcode-cn.com/problems/minimum-deletion-cost-to-avoid-repeating-letters | |
1579,https://leetcode-cn.com/problems/remove-max-number-of-edges-to-keep-graph-fully-traversable | |
1580,https://leetcode-cn.com/problems/put-boxes-into-the-warehouse-ii | |
1581,https://leetcode-cn.com/problems/customer-who-visited-but-did-not-make-any-transactions | |
1582,https://leetcode-cn.com/problems/special-positions-in-a-binary-matrix | |
1583,https://leetcode-cn.com/problems/count-unhappy-friends | |
1584,https://leetcode-cn.com/problems/min-cost-to-connect-all-points | |
1585,https://leetcode-cn.com/problems/check-if-string-is-transformable-with-substring-sort-operations | |
1586,https://leetcode-cn.com/problems/binary-search-tree-iterator-ii | |
1587,https://leetcode-cn.com/problems/bank-account-summary-ii | |
1588,https://leetcode-cn.com/problems/sum-of-all-odd-length-subarrays | |
1589,https://leetcode-cn.com/problems/maximum-sum-obtained-of-any-permutation | |
1590,https://leetcode-cn.com/problems/make-sum-divisible-by-p | |
1591,https://leetcode-cn.com/problems/strange-printer-ii | |
1592,https://leetcode-cn.com/problems/rearrange-spaces-between-words | |
1593,https://leetcode-cn.com/problems/split-a-string-into-the-max-number-of-unique-substrings | |
1594,https://leetcode-cn.com/problems/maximum-non-negative-product-in-a-matrix | |
1595,https://leetcode-cn.com/problems/minimum-cost-to-connect-two-groups-of-points | |
1596,https://leetcode-cn.com/problems/the-most-frequently-ordered-products-for-each-customer | |
1597,https://leetcode-cn.com/problems/build-binary-expression-tree-from-infix-expression | |
1598,https://leetcode-cn.com/problems/crawler-log-folder | |
1599,https://leetcode-cn.com/problems/maximum-profit-of-operating-a-centennial-wheel | |
1600,https://leetcode-cn.com/problems/throne-inheritance | |
1601,https://leetcode-cn.com/problems/maximum-number-of-achievable-transfer-requests | |
1602,https://leetcode-cn.com/problems/find-nearest-right-node-in-binary-tree | |
1603,https://leetcode-cn.com/problems/design-parking-system | |
1604,https://leetcode-cn.com/problems/alert-using-same-key-card-three-or-more-times-in-a-one-hour-period | |
1605,https://leetcode-cn.com/problems/find-valid-matrix-given-row-and-column-sums | |
1606,https://leetcode-cn.com/problems/find-servers-that-handled-most-number-of-requests | |
1607,https://leetcode-cn.com/problems/sellers-with-no-sales | |
1608,https://leetcode-cn.com/problems/special-array-with-x-elements-greater-than-or-equal-x | |
1609,https://leetcode-cn.com/problems/even-odd-tree | |
1610,https://leetcode-cn.com/problems/maximum-number-of-visible-points | |
1611,https://leetcode-cn.com/problems/minimum-one-bit-operations-to-make-integers-zero | |
1612,https://leetcode-cn.com/problems/check-if-two-expression-trees-are-equivalent | |
1613,https://leetcode-cn.com/problems/find-the-missing-ids | |
1614,https://leetcode-cn.com/problems/maximum-nesting-depth-of-the-parentheses | |
1615,https://leetcode-cn.com/problems/maximal-network-rank | |
1616,https://leetcode-cn.com/problems/split-two-strings-to-make-palindrome | |
1617,https://leetcode-cn.com/problems/count-subtrees-with-max-distance-between-cities | |
1618,https://leetcode-cn.com/problems/maximum-font-to-fit-a-sentence-in-a-screen | |
1619,https://leetcode-cn.com/problems/mean-of-array-after-removing-some-elements | |
1620,https://leetcode-cn.com/problems/coordinate-with-maximum-network-quality | |
1621,https://leetcode-cn.com/problems/number-of-sets-of-k-non-overlapping-line-segments | |
1622,https://leetcode-cn.com/problems/fancy-sequence | |
1623,https://leetcode-cn.com/problems/all-valid-triplets-that-can-represent-a-country | |
1624,https://leetcode-cn.com/problems/largest-substring-between-two-equal-characters | |
1625,https://leetcode-cn.com/problems/lexicographically-smallest-string-after-applying-operations | |
1626,https://leetcode-cn.com/problems/best-team-with-no-conflicts | |
1627,https://leetcode-cn.com/problems/graph-connectivity-with-threshold | |
1628,https://leetcode-cn.com/problems/design-an-expression-tree-with-evaluate-function | |
1629,https://leetcode-cn.com/problems/slowest-key | |
1630,https://leetcode-cn.com/problems/arithmetic-subarrays | |
1631,https://leetcode-cn.com/problems/path-with-minimum-effort | |
1632,https://leetcode-cn.com/problems/rank-transform-of-a-matrix | |
1633,https://leetcode-cn.com/problems/percentage-of-users-attended-a-contest | |
1634,https://leetcode-cn.com/problems/add-two-polynomials-represented-as-linked-lists | |
1635,https://leetcode-cn.com/problems/hopper-company-queries-i | |
1636,https://leetcode-cn.com/problems/sort-array-by-increasing-frequency | |
1637,https://leetcode-cn.com/problems/widest-vertical-area-between-two-points-containing-no-points | |
1638,https://leetcode-cn.com/problems/count-substrings-that-differ-by-one-character | |
1639,https://leetcode-cn.com/problems/number-of-ways-to-form-a-target-string-given-a-dictionary | |
1640,https://leetcode-cn.com/problems/check-array-formation-through-concatenation | |
1641,https://leetcode-cn.com/problems/count-sorted-vowel-strings | |
1642,https://leetcode-cn.com/problems/furthest-building-you-can-reach | |
1643,https://leetcode-cn.com/problems/kth-smallest-instructions | |
1644,https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree-ii | |
1645,https://leetcode-cn.com/problems/hopper-company-queries-ii | |
1646,https://leetcode-cn.com/problems/get-maximum-in-generated-array | |
1647,https://leetcode-cn.com/problems/minimum-deletions-to-make-character-frequencies-unique | |
1648,https://leetcode-cn.com/problems/sell-diminishing-valued-colored-balls | |
1649,https://leetcode-cn.com/problems/create-sorted-array-through-instructions | |
1650,https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree-iii | |
1651,https://leetcode-cn.com/problems/hopper-company-queries-iii | |
1652,https://leetcode-cn.com/problems/defuse-the-bomb | |
1653,https://leetcode-cn.com/problems/minimum-deletions-to-make-string-balanced | |
1654,https://leetcode-cn.com/problems/minimum-jumps-to-reach-home | |
1655,https://leetcode-cn.com/problems/distribute-repeating-integers | |
1656,https://leetcode-cn.com/problems/design-an-ordered-stream | |
1657,https://leetcode-cn.com/problems/determine-if-two-strings-are-close | |
1658,https://leetcode-cn.com/problems/minimum-operations-to-reduce-x-to-zero | |
1659,https://leetcode-cn.com/problems/maximize-grid-happiness | |
1660,https://leetcode-cn.com/problems/correct-a-binary-tree | |
1661,https://leetcode-cn.com/problems/average-time-of-process-per-machine | |
1662,https://leetcode-cn.com/problems/check-if-two-string-arrays-are-equivalent | |
1663,https://leetcode-cn.com/problems/smallest-string-with-a-given-numeric-value | |
1664,https://leetcode-cn.com/problems/ways-to-make-a-fair-array | |
1665,https://leetcode-cn.com/problems/minimum-initial-energy-to-finish-tasks | |
1666,https://leetcode-cn.com/problems/change-the-root-of-a-binary-tree | |
1667,https://leetcode-cn.com/problems/fix-names-in-a-table | |
1668,https://leetcode-cn.com/problems/maximum-repeating-substring | |
1669,https://leetcode-cn.com/problems/merge-in-between-linked-lists | |
1670,https://leetcode-cn.com/problems/design-front-middle-back-queue | |
1671,https://leetcode-cn.com/problems/minimum-number-of-removals-to-make-mountain-array | |
1672,https://leetcode-cn.com/problems/richest-customer-wealth | |
1673,https://leetcode-cn.com/problems/find-the-most-competitive-subsequence | |
1674,https://leetcode-cn.com/problems/minimum-moves-to-make-array-complementary | |
1675,https://leetcode-cn.com/problems/minimize-deviation-in-array | |
1676,https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree-iv | |
1677,https://leetcode-cn.com/problems/products-worth-over-invoices | |
1678,https://leetcode-cn.com/problems/goal-parser-interpretation | |
1679,https://leetcode-cn.com/problems/max-number-of-k-sum-pairs | |
1680,https://leetcode-cn.com/problems/concatenation-of-consecutive-binary-numbers | |
1681,https://leetcode-cn.com/problems/minimum-incompatibility | |
1682,https://leetcode-cn.com/problems/longest-palindromic-subsequence-ii | |
1683,https://leetcode-cn.com/problems/invalid-tweets | |
1684,https://leetcode-cn.com/problems/count-the-number-of-consistent-strings | |
1685,https://leetcode-cn.com/problems/sum-of-absolute-differences-in-a-sorted-array | |
1686,https://leetcode-cn.com/problems/stone-game-vi | |
1687,https://leetcode-cn.com/problems/delivering-boxes-from-storage-to-ports | |
1688,https://leetcode-cn.com/problems/count-of-matches-in-tournament | |
1689,https://leetcode-cn.com/problems/partitioning-into-minimum-number-of-deci-binary-numbers | |
1690,https://leetcode-cn.com/problems/stone-game-vii | |
1691,https://leetcode-cn.com/problems/maximum-height-by-stacking-cuboids | |
1692,https://leetcode-cn.com/problems/count-ways-to-distribute-candies | |
1693,https://leetcode-cn.com/problems/daily-leads-and-partners | |
1694,https://leetcode-cn.com/problems/reformat-phone-number | |
1695,https://leetcode-cn.com/problems/maximum-erasure-value | |
1696,https://leetcode-cn.com/problems/jump-game-vi | |
1697,https://leetcode-cn.com/problems/checking-existence-of-edge-length-limited-paths | |
1698,https://leetcode-cn.com/problems/number-of-distinct-substrings-in-a-string | |
1699,https://leetcode-cn.com/problems/number-of-calls-between-two-persons | |
1700,https://leetcode-cn.com/problems/number-of-students-unable-to-eat-lunch | |
1701,https://leetcode-cn.com/problems/average-waiting-time | |
1702,https://leetcode-cn.com/problems/maximum-binary-string-after-change | |
1703,https://leetcode-cn.com/problems/minimum-adjacent-swaps-for-k-consecutive-ones | |
1704,https://leetcode-cn.com/problems/determine-if-string-halves-are-alike | |
1705,https://leetcode-cn.com/problems/maximum-number-of-eaten-apples | |
1706,https://leetcode-cn.com/problems/where-will-the-ball-fall | |
1707,https://leetcode-cn.com/problems/maximum-xor-with-an-element-from-array | |
1708,https://leetcode-cn.com/problems/largest-subarray-length-k | |
1709,https://leetcode-cn.com/problems/biggest-window-between-visits | |
1710,https://leetcode-cn.com/problems/maximum-units-on-a-truck | |
1711,https://leetcode-cn.com/problems/count-good-meals | |
1712,https://leetcode-cn.com/problems/ways-to-split-array-into-three-subarrays | |
1713,https://leetcode-cn.com/problems/minimum-operations-to-make-a-subsequence | |
1714,https://leetcode-cn.com/problems/sum-of-special-evenly-spaced-elements-in-array | |
1715,https://leetcode-cn.com/problems/count-apples-and-oranges | |
1716,https://leetcode-cn.com/problems/calculate-money-in-leetcode-bank | |
1717,https://leetcode-cn.com/problems/maximum-score-from-removing-substrings | |
1718,https://leetcode-cn.com/problems/construct-the-lexicographically-largest-valid-sequence | |
1719,https://leetcode-cn.com/problems/number-of-ways-to-reconstruct-a-tree | |
1720,https://leetcode-cn.com/problems/decode-xored-array | |
1721,https://leetcode-cn.com/problems/swapping-nodes-in-a-linked-list | |
1722,https://leetcode-cn.com/problems/minimize-hamming-distance-after-swap-operations | |
1723,https://leetcode-cn.com/problems/find-minimum-time-to-finish-all-jobs | |
1724,https://leetcode-cn.com/problems/checking-existence-of-edge-length-limited-paths-ii | |
1725,https://leetcode-cn.com/problems/number-of-rectangles-that-can-form-the-largest-square | |
1726,https://leetcode-cn.com/problems/tuple-with-same-product | |
1727,https://leetcode-cn.com/problems/largest-submatrix-with-rearrangements | |
1728,https://leetcode-cn.com/problems/cat-and-mouse-ii | |
1729,https://leetcode-cn.com/problems/find-followers-count | |
1730,https://leetcode-cn.com/problems/shortest-path-to-get-food | |
1731,https://leetcode-cn.com/problems/the-number-of-employees-which-report-to-each-employee | |
1732,https://leetcode-cn.com/problems/find-the-highest-altitude | |
1733,https://leetcode-cn.com/problems/minimum-number-of-people-to-teach | |
1734,https://leetcode-cn.com/problems/decode-xored-permutation | |
1735,https://leetcode-cn.com/problems/count-ways-to-make-array-with-product | |
1736,https://leetcode-cn.com/problems/latest-time-by-replacing-hidden-digits | |
1737,https://leetcode-cn.com/problems/change-minimum-characters-to-satisfy-one-of-three-conditions | |
1738,https://leetcode-cn.com/problems/find-kth-largest-xor-coordinate-value | |
1739,https://leetcode-cn.com/problems/building-boxes | |
1740,https://leetcode-cn.com/problems/find-distance-in-a-binary-tree | |
1741,https://leetcode-cn.com/problems/find-total-time-spent-by-each-employee | |
1742,https://leetcode-cn.com/problems/maximum-number-of-balls-in-a-box | |
1743,https://leetcode-cn.com/problems/restore-the-array-from-adjacent-pairs | |
1744,https://leetcode-cn.com/problems/can-you-eat-your-favorite-candy-on-your-favorite-day | |
1745,https://leetcode-cn.com/problems/palindrome-partitioning-iv | |
1746,https://leetcode-cn.com/problems/maximum-subarray-sum-after-one-operation | |
1747,https://leetcode-cn.com/problems/leetflex-banned-accounts | |
1748,https://leetcode-cn.com/problems/sum-of-unique-elements | |
1749,https://leetcode-cn.com/problems/maximum-absolute-sum-of-any-subarray | |
1750,https://leetcode-cn.com/problems/minimum-length-of-string-after-deleting-similar-ends | |
1751,https://leetcode-cn.com/problems/maximum-number-of-events-that-can-be-attended-ii | |
1752,https://leetcode-cn.com/problems/check-if-array-is-sorted-and-rotated | |
1753,https://leetcode-cn.com/problems/maximum-score-from-removing-stones | |
1754,https://leetcode-cn.com/problems/largest-merge-of-two-strings | |
1755,https://leetcode-cn.com/problems/closest-subsequence-sum | |
1756,https://leetcode-cn.com/problems/design-most-recently-used-queue | |
1757,https://leetcode-cn.com/problems/recyclable-and-low-fat-products | |
1758,https://leetcode-cn.com/problems/minimum-changes-to-make-alternating-binary-string | |
1759,https://leetcode-cn.com/problems/count-number-of-homogenous-substrings | |
1760,https://leetcode-cn.com/problems/minimum-limit-of-balls-in-a-bag | |
1761,https://leetcode-cn.com/problems/minimum-degree-of-a-connected-trio-in-a-graph | |
1762,https://leetcode-cn.com/problems/buildings-with-an-ocean-view | |
1763,https://leetcode-cn.com/problems/longest-nice-substring | |
1764,https://leetcode-cn.com/problems/form-array-by-concatenating-subarrays-of-another-array | |
1765,https://leetcode-cn.com/problems/map-of-highest-peak | |
1766,https://leetcode-cn.com/problems/tree-of-coprimes | |
1767,https://leetcode-cn.com/problems/find-the-subtasks-that-did-not-execute | |
1768,https://leetcode-cn.com/problems/merge-strings-alternately | |
1769,https://leetcode-cn.com/problems/minimum-number-of-operations-to-move-all-balls-to-each-box | |
1770,https://leetcode-cn.com/problems/maximum-score-from-performing-multiplication-operations | |
1771,https://leetcode-cn.com/problems/maximize-palindrome-length-from-subsequences | |
1772,https://leetcode-cn.com/problems/sort-features-by-popularity | |
1773,https://leetcode-cn.com/problems/count-items-matching-a-rule | |
1774,https://leetcode-cn.com/problems/closest-dessert-cost | |
1775,https://leetcode-cn.com/problems/equal-sum-arrays-with-minimum-number-of-operations | |
1776,https://leetcode-cn.com/problems/car-fleet-ii | |
1777,https://leetcode-cn.com/problems/products-price-for-each-store | |
1778,https://leetcode-cn.com/problems/shortest-path-in-a-hidden-grid | |
1779,https://leetcode-cn.com/problems/find-nearest-point-that-has-the-same-x-or-y-coordinate | |
1780,https://leetcode-cn.com/problems/check-if-number-is-a-sum-of-powers-of-three | |
1781,https://leetcode-cn.com/problems/sum-of-beauty-of-all-substrings | |
1782,https://leetcode-cn.com/problems/count-pairs-of-nodes | |
1783,https://leetcode-cn.com/problems/grand-slam-titles | |
1784,https://leetcode-cn.com/problems/check-if-binary-string-has-at-most-one-segment-of-ones | |
1785,https://leetcode-cn.com/problems/minimum-elements-to-add-to-form-a-given-sum | |
1786,https://leetcode-cn.com/problems/number-of-restricted-paths-from-first-to-last-node | |
1787,https://leetcode-cn.com/problems/make-the-xor-of-all-segments-equal-to-zero | |
1788,https://leetcode-cn.com/problems/maximize-the-beauty-of-the-garden | |
1789,https://leetcode-cn.com/problems/primary-department-for-each-employee | |
1790,https://leetcode-cn.com/problems/check-if-one-string-swap-can-make-strings-equal | |
1791,https://leetcode-cn.com/problems/find-center-of-star-graph | |
1792,https://leetcode-cn.com/problems/maximum-average-pass-ratio | |
1793,https://leetcode-cn.com/problems/maximum-score-of-a-good-subarray | |
1794,https://leetcode-cn.com/problems/count-pairs-of-equal-substrings-with-minimum-difference | |
1795,https://leetcode-cn.com/problems/rearrange-products-table | |
1796,https://leetcode-cn.com/problems/second-largest-digit-in-a-string | |
1797,https://leetcode-cn.com/problems/design-authentication-manager | |
1798,https://leetcode-cn.com/problems/maximum-number-of-consecutive-values-you-can-make | |
1799,https://leetcode-cn.com/problems/maximize-score-after-n-operations | |
1800,https://leetcode-cn.com/problems/maximum-ascending-subarray-sum | |
1801,https://leetcode-cn.com/problems/number-of-orders-in-the-backlog | |
1802,https://leetcode-cn.com/problems/maximum-value-at-a-given-index-in-a-bounded-array | |
1803,https://leetcode-cn.com/problems/count-pairs-with-xor-in-a-range | |
1804,https://leetcode-cn.com/problems/implement-trie-ii-prefix-tree | |
1805,https://leetcode-cn.com/problems/number-of-different-integers-in-a-string | |
1806,https://leetcode-cn.com/problems/minimum-number-of-operations-to-reinitialize-a-permutation | |
1807,https://leetcode-cn.com/problems/evaluate-the-bracket-pairs-of-a-string | |
1808,https://leetcode-cn.com/problems/maximize-number-of-nice-divisors | |
1809,https://leetcode-cn.com/problems/ad-free-sessions | |
1810,https://leetcode-cn.com/problems/minimum-path-cost-in-a-hidden-grid | |
1811,https://leetcode-cn.com/problems/find-interview-candidates | |
1812,https://leetcode-cn.com/problems/determine-color-of-a-chessboard-square | |
1813,https://leetcode-cn.com/problems/sentence-similarity-iii | |
1814,https://leetcode-cn.com/problems/count-nice-pairs-in-an-array | |
1815,https://leetcode-cn.com/problems/maximum-number-of-groups-getting-fresh-donuts | |
1816,https://leetcode-cn.com/problems/truncate-sentence | |
1817,https://leetcode-cn.com/problems/finding-the-users-active-minutes | |
1818,https://leetcode-cn.com/problems/minimum-absolute-sum-difference | |
1819,https://leetcode-cn.com/problems/number-of-different-subsequences-gcds | |
1820,https://leetcode-cn.com/problems/maximum-number-of-accepted-invitations | |
1821,https://leetcode-cn.com/problems/find-customers-with-positive-revenue-this-year | |
1822,https://leetcode-cn.com/problems/sign-of-the-product-of-an-array | |
1823,https://leetcode-cn.com/problems/find-the-winner-of-the-circular-game | |
1824,https://leetcode-cn.com/problems/minimum-sideway-jumps | |
1825,https://leetcode-cn.com/problems/finding-mk-average | |
1826,https://leetcode-cn.com/problems/faulty-sensor | |
1827,https://leetcode-cn.com/problems/minimum-operations-to-make-the-array-increasing | |
1828,https://leetcode-cn.com/problems/queries-on-number-of-points-inside-a-circle | |
1829,https://leetcode-cn.com/problems/maximum-xor-for-each-query | |
1830,https://leetcode-cn.com/problems/minimum-number-of-operations-to-make-string-sorted | |
1831,https://leetcode-cn.com/problems/maximum-transaction-each-day | |
1832,https://leetcode-cn.com/problems/check-if-the-sentence-is-pangram | |
1833,https://leetcode-cn.com/problems/maximum-ice-cream-bars | |
1834,https://leetcode-cn.com/problems/single-threaded-cpu | |
1835,https://leetcode-cn.com/problems/find-xor-sum-of-all-pairs-bitwise-and | |
1836,https://leetcode-cn.com/problems/remove-duplicates-from-an-unsorted-linked-list | |
LCP 01,https://leetcode-cn.com/problems/guess-numbers | |
LCP 02,https://leetcode-cn.com/problems/deep-dark-fraction | |
LCP 03,https://leetcode-cn.com/problems/programmable-robot | |
LCP 04,https://leetcode-cn.com/problems/broken-board-dominoes | |
LCP 05,https://leetcode-cn.com/problems/coin-bonus | |
LCP 06,https://leetcode-cn.com/problems/na-ying-bi | |
LCP 07,https://leetcode-cn.com/problems/chuan-di-xin-xi | |
LCP 08,https://leetcode-cn.com/problems/ju-qing-hong-fa-shi-jian | |
LCP 09,https://leetcode-cn.com/problems/zui-xiao-tiao-yue-ci-shu | |
LCP 10,https://leetcode-cn.com/problems/er-cha-shu-ren-wu-diao-du | |
LCP 11,https://leetcode-cn.com/problems/qi-wang-ge-shu-tong-ji | |
LCP 12,https://leetcode-cn.com/problems/xiao-zhang-shua-ti-ji-hua | |
LCP 13,https://leetcode-cn.com/problems/xun-bao | |
LCP 14,https://leetcode-cn.com/problems/qie-fen-shu-zu | |
LCP 15,https://leetcode-cn.com/problems/you-le-yuan-de-mi-gong | |
LCP 16,https://leetcode-cn.com/problems/you-le-yuan-de-you-lan-ji-hua | |
LCP 17,https://leetcode-cn.com/problems/nGK0Fy | |
LCP 18,https://leetcode-cn.com/problems/2vYnGI | |
LCP 19,https://leetcode-cn.com/problems/UlBDOe | |
LCP 20,https://leetcode-cn.com/problems/meChtZ | |
LCP 21,https://leetcode-cn.com/problems/Za25hA | |
LCP 22,https://leetcode-cn.com/problems/ccw6C7 | |
LCP 23,https://leetcode-cn.com/problems/er94lq | |
LCP 24,https://leetcode-cn.com/problems/5TxKeK | |
LCP 25,https://leetcode-cn.com/problems/Uh984O | |
LCP 26,https://leetcode-cn.com/problems/hSRGyL | |
LCP 27,https://leetcode-cn.com/problems/IQvJ9i | |
LCP 28,https://leetcode-cn.com/problems/4xy4Wx | |
LCP 29,https://leetcode-cn.com/problems/SNJvJP | |
LCP 30,https://leetcode-cn.com/problems/p0NxJO | |
LCP 31,https://leetcode-cn.com/problems/Db3wC1 | |
LCP 32,https://leetcode-cn.com/problems/t3fKg1 | |
LCP 33,https://leetcode-cn.com/problems/o8SXZn | |
LCP 34,https://leetcode-cn.com/problems/er-cha-shu-ran-se-UGC | |
LCP 35,https://leetcode-cn.com/problems/DFPeFJ | |
LCP 36,https://leetcode-cn.com/problems/Up5XYM | |
LCP 37,https://leetcode-cn.com/problems/zui-xiao-ju-xing-mian-ji | |
LCP 38,https://leetcode-cn.com/problems/7rLGCR | |
剑指 Offer 03,https://leetcode-cn.com/problems/shu-zu-zhong-zhong-fu-de-shu-zi-lcof | |
剑指 Offer 04,https://leetcode-cn.com/problems/er-wei-shu-zu-zhong-de-cha-zhao-lcof | |
剑指 Offer 05,https://leetcode-cn.com/problems/ti-huan-kong-ge-lcof | |
剑指 Offer 06,https://leetcode-cn.com/problems/cong-wei-dao-tou-da-yin-lian-biao-lcof | |
剑指 Offer 07,https://leetcode-cn.com/problems/zhong-jian-er-cha-shu-lcof | |
剑指 Offer 09,https://leetcode-cn.com/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof | |
剑指 Offer 10- I,https://leetcode-cn.com/problems/fei-bo-na-qi-shu-lie-lcof | |
剑指 Offer 10- II,https://leetcode-cn.com/problems/qing-wa-tiao-tai-jie-wen-ti-lcof | |
剑指 Offer 11,https://leetcode-cn.com/problems/xuan-zhuan-shu-zu-de-zui-xiao-shu-zi-lcof | |
剑指 Offer 12,https://leetcode-cn.com/problems/ju-zhen-zhong-de-lu-jing-lcof | |
剑指 Offer 13,https://leetcode-cn.com/problems/ji-qi-ren-de-yun-dong-fan-wei-lcof | |
剑指 Offer 14- I,https://leetcode-cn.com/problems/jian-sheng-zi-lcof | |
剑指 Offer 14- II,https://leetcode-cn.com/problems/jian-sheng-zi-ii-lcof | |
剑指 Offer 15,https://leetcode-cn.com/problems/er-jin-zhi-zhong-1de-ge-shu-lcof | |
剑指 Offer 16,https://leetcode-cn.com/problems/shu-zhi-de-zheng-shu-ci-fang-lcof | |
剑指 Offer 17,https://leetcode-cn.com/problems/da-yin-cong-1dao-zui-da-de-nwei-shu-lcof | |
剑指 Offer 18,https://leetcode-cn.com/problems/shan-chu-lian-biao-de-jie-dian-lcof | |
剑指 Offer 19,https://leetcode-cn.com/problems/zheng-ze-biao-da-shi-pi-pei-lcof | |
剑指 Offer 20,https://leetcode-cn.com/problems/biao-shi-shu-zhi-de-zi-fu-chuan-lcof | |
剑指 Offer 21,https://leetcode-cn.com/problems/diao-zheng-shu-zu-shun-xu-shi-qi-shu-wei-yu-ou-shu-qian-mian-lcof | |
剑指 Offer 22,https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof | |
剑指 Offer 24,https://leetcode-cn.com/problems/fan-zhuan-lian-biao-lcof | |
剑指 Offer 25,https://leetcode-cn.com/problems/he-bing-liang-ge-pai-xu-de-lian-biao-lcof | |
剑指 Offer 26,https://leetcode-cn.com/problems/shu-de-zi-jie-gou-lcof | |
剑指 Offer 27,https://leetcode-cn.com/problems/er-cha-shu-de-jing-xiang-lcof | |
剑指 Offer 28,https://leetcode-cn.com/problems/dui-cheng-de-er-cha-shu-lcof | |
剑指 Offer 29,https://leetcode-cn.com/problems/shun-shi-zhen-da-yin-ju-zhen-lcof | |
剑指 Offer 30,https://leetcode-cn.com/problems/bao-han-minhan-shu-de-zhan-lcof | |
剑指 Offer 31,https://leetcode-cn.com/problems/zhan-de-ya-ru-dan-chu-xu-lie-lcof | |
剑指 Offer 32 - I,https://leetcode-cn.com/problems/cong-shang-dao-xia-da-yin-er-cha-shu-lcof | |
剑指 Offer 32 - II,https://leetcode-cn.com/problems/cong-shang-dao-xia-da-yin-er-cha-shu-ii-lcof | |
剑指 Offer 32 - III,https://leetcode-cn.com/problems/cong-shang-dao-xia-da-yin-er-cha-shu-iii-lcof | |
剑指 Offer 33,https://leetcode-cn.com/problems/er-cha-sou-suo-shu-de-hou-xu-bian-li-xu-lie-lcof | |
剑指 Offer 34,https://leetcode-cn.com/problems/er-cha-shu-zhong-he-wei-mou-yi-zhi-de-lu-jing-lcof | |
剑指 Offer 35,https://leetcode-cn.com/problems/fu-za-lian-biao-de-fu-zhi-lcof | |
剑指 Offer 36,https://leetcode-cn.com/problems/er-cha-sou-suo-shu-yu-shuang-xiang-lian-biao-lcof | |
剑指 Offer 37,https://leetcode-cn.com/problems/xu-lie-hua-er-cha-shu-lcof | |
剑指 Offer 38,https://leetcode-cn.com/problems/zi-fu-chuan-de-pai-lie-lcof | |
剑指 Offer 39,https://leetcode-cn.com/problems/shu-zu-zhong-chu-xian-ci-shu-chao-guo-yi-ban-de-shu-zi-lcof | |
剑指 Offer 40,https://leetcode-cn.com/problems/zui-xiao-de-kge-shu-lcof | |
剑指 Offer 41,https://leetcode-cn.com/problems/shu-ju-liu-zhong-de-zhong-wei-shu-lcof | |
剑指 Offer 42,https://leetcode-cn.com/problems/lian-xu-zi-shu-zu-de-zui-da-he-lcof | |
剑指 Offer 43,https://leetcode-cn.com/problems/1nzheng-shu-zhong-1chu-xian-de-ci-shu-lcof | |
剑指 Offer 44,https://leetcode-cn.com/problems/shu-zi-xu-lie-zhong-mou-yi-wei-de-shu-zi-lcof | |
剑指 Offer 45,https://leetcode-cn.com/problems/ba-shu-zu-pai-cheng-zui-xiao-de-shu-lcof | |
剑指 Offer 46,https://leetcode-cn.com/problems/ba-shu-zi-fan-yi-cheng-zi-fu-chuan-lcof | |
剑指 Offer 47,https://leetcode-cn.com/problems/li-wu-de-zui-da-jie-zhi-lcof | |
剑指 Offer 48,https://leetcode-cn.com/problems/zui-chang-bu-han-zhong-fu-zi-fu-de-zi-zi-fu-chuan-lcof | |
剑指 Offer 49,https://leetcode-cn.com/problems/chou-shu-lcof | |
剑指 Offer 50,https://leetcode-cn.com/problems/di-yi-ge-zhi-chu-xian-yi-ci-de-zi-fu-lcof | |
剑指 Offer 51,https://leetcode-cn.com/problems/shu-zu-zhong-de-ni-xu-dui-lcof | |
剑指 Offer 52,https://leetcode-cn.com/problems/liang-ge-lian-biao-de-di-yi-ge-gong-gong-jie-dian-lcof | |
剑指 Offer 53 - I,https://leetcode-cn.com/problems/zai-pai-xu-shu-zu-zhong-cha-zhao-shu-zi-lcof | |
剑指 Offer 53 - II,https://leetcode-cn.com/problems/que-shi-de-shu-zi-lcof | |
剑指 Offer 54,https://leetcode-cn.com/problems/er-cha-sou-suo-shu-de-di-kda-jie-dian-lcof | |
剑指 Offer 55 - I,https://leetcode-cn.com/problems/er-cha-shu-de-shen-du-lcof | |
剑指 Offer 55 - II,https://leetcode-cn.com/problems/ping-heng-er-cha-shu-lcof | |
剑指 Offer 56 - I,https://leetcode-cn.com/problems/shu-zu-zhong-shu-zi-chu-xian-de-ci-shu-lcof | |
剑指 Offer 56 - II,https://leetcode-cn.com/problems/shu-zu-zhong-shu-zi-chu-xian-de-ci-shu-ii-lcof | |
剑指 Offer 57,https://leetcode-cn.com/problems/he-wei-sde-liang-ge-shu-zi-lcof | |
剑指 Offer 57 - II,https://leetcode-cn.com/problems/he-wei-sde-lian-xu-zheng-shu-xu-lie-lcof | |
剑指 Offer 58 - I,https://leetcode-cn.com/problems/fan-zhuan-dan-ci-shun-xu-lcof | |
剑指 Offer 58 - II,https://leetcode-cn.com/problems/zuo-xuan-zhuan-zi-fu-chuan-lcof | |
剑指 Offer 59 - I,https://leetcode-cn.com/problems/hua-dong-chuang-kou-de-zui-da-zhi-lcof | |
剑指 Offer 59 - II,https://leetcode-cn.com/problems/dui-lie-de-zui-da-zhi-lcof | |
剑指 Offer 60,https://leetcode-cn.com/problems/nge-tou-zi-de-dian-shu-lcof | |
剑指 Offer 61,https://leetcode-cn.com/problems/bu-ke-pai-zhong-de-shun-zi-lcof | |
剑指 Offer 62,https://leetcode-cn.com/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof | |
剑指 Offer 63,https://leetcode-cn.com/problems/gu-piao-de-zui-da-li-run-lcof | |
剑指 Offer 64,https://leetcode-cn.com/problems/qiu-12n-lcof | |
剑指 Offer 65,https://leetcode-cn.com/problems/bu-yong-jia-jian-cheng-chu-zuo-jia-fa-lcof | |
剑指 Offer 66,https://leetcode-cn.com/problems/gou-jian-cheng-ji-shu-zu-lcof | |
剑指 Offer 67,https://leetcode-cn.com/problems/ba-zi-fu-chuan-zhuan-huan-cheng-zheng-shu-lcof | |
剑指 Offer 68 - I,https://leetcode-cn.com/problems/er-cha-sou-suo-shu-de-zui-jin-gong-gong-zu-xian-lcof | |
剑指 Offer 68 - II,https://leetcode-cn.com/problems/er-cha-shu-de-zui-jin-gong-gong-zu-xian-lcof | |
面试题 01.01,https://leetcode-cn.com/problems/is-unique-lcci | |
面试题 01.02,https://leetcode-cn.com/problems/check-permutation-lcci | |
面试题 01.03,https://leetcode-cn.com/problems/string-to-url-lcci | |
面试题 01.04,https://leetcode-cn.com/problems/palindrome-permutation-lcci | |
面试题 01.05,https://leetcode-cn.com/problems/one-away-lcci | |
面试题 01.06,https://leetcode-cn.com/problems/compress-string-lcci | |
面试题 01.07,https://leetcode-cn.com/problems/rotate-matrix-lcci | |
面试题 01.08,https://leetcode-cn.com/problems/zero-matrix-lcci | |
面试题 01.09,https://leetcode-cn.com/problems/string-rotation-lcci | |
面试题 02.01,https://leetcode-cn.com/problems/remove-duplicate-node-lcci | |
面试题 02.02,https://leetcode-cn.com/problems/kth-node-from-end-of-list-lcci | |
面试题 02.03,https://leetcode-cn.com/problems/delete-middle-node-lcci | |
面试题 02.04,https://leetcode-cn.com/problems/partition-list-lcci | |
面试题 02.05,https://leetcode-cn.com/problems/sum-lists-lcci | |
面试题 02.06,https://leetcode-cn.com/problems/palindrome-linked-list-lcci | |
面试题 02.07,https://leetcode-cn.com/problems/intersection-of-two-linked-lists-lcci | |
面试题 02.08,https://leetcode-cn.com/problems/linked-list-cycle-lcci | |
面试题 03.01,https://leetcode-cn.com/problems/three-in-one-lcci | |
面试题 03.02,https://leetcode-cn.com/problems/min-stack-lcci | |
面试题 03.03,https://leetcode-cn.com/problems/stack-of-plates-lcci | |
面试题 03.04,https://leetcode-cn.com/problems/implement-queue-using-stacks-lcci | |
面试题 03.05,https://leetcode-cn.com/problems/sort-of-stacks-lcci | |
面试题 03.06,https://leetcode-cn.com/problems/animal-shelter-lcci | |
面试题 04.01,https://leetcode-cn.com/problems/route-between-nodes-lcci | |
面试题 04.02,https://leetcode-cn.com/problems/minimum-height-tree-lcci | |
面试题 04.03,https://leetcode-cn.com/problems/list-of-depth-lcci | |
面试题 04.04,https://leetcode-cn.com/problems/check-balance-lcci | |
面试题 04.05,https://leetcode-cn.com/problems/legal-binary-search-tree-lcci | |
面试题 04.06,https://leetcode-cn.com/problems/successor-lcci | |
面试题 04.08,https://leetcode-cn.com/problems/first-common-ancestor-lcci | |
面试题 04.09,https://leetcode-cn.com/problems/bst-sequences-lcci | |
面试题 04.10,https://leetcode-cn.com/problems/check-subtree-lcci | |
面试题 04.12,https://leetcode-cn.com/problems/paths-with-sum-lcci | |
面试题 05.01,https://leetcode-cn.com/problems/insert-into-bits-lcci | |
面试题 05.02,https://leetcode-cn.com/problems/bianry-number-to-string-lcci | |
面试题 05.03,https://leetcode-cn.com/problems/reverse-bits-lcci | |
面试题 05.04,https://leetcode-cn.com/problems/closed-number-lcci | |
面试题 05.06,https://leetcode-cn.com/problems/convert-integer-lcci | |
面试题 05.07,https://leetcode-cn.com/problems/exchange-lcci | |
面试题 05.08,https://leetcode-cn.com/problems/draw-line-lcci | |
面试题 08.01,https://leetcode-cn.com/problems/three-steps-problem-lcci | |
面试题 08.02,https://leetcode-cn.com/problems/robot-in-a-grid-lcci | |
面试题 08.03,https://leetcode-cn.com/problems/magic-index-lcci | |
面试题 08.04,https://leetcode-cn.com/problems/power-set-lcci | |
面试题 08.05,https://leetcode-cn.com/problems/recursive-mulitply-lcci | |
面试题 08.06,https://leetcode-cn.com/problems/hanota-lcci | |
面试题 08.07,https://leetcode-cn.com/problems/permutation-i-lcci | |
面试题 08.08,https://leetcode-cn.com/problems/permutation-ii-lcci | |
面试题 08.09,https://leetcode-cn.com/problems/bracket-lcci | |
面试题 08.10,https://leetcode-cn.com/problems/color-fill-lcci | |
面试题 08.11,https://leetcode-cn.com/problems/coin-lcci | |
面试题 08.12,https://leetcode-cn.com/problems/eight-queens-lcci | |
面试题 08.13,https://leetcode-cn.com/problems/pile-box-lcci | |
面试题 08.14,https://leetcode-cn.com/problems/boolean-evaluation-lcci | |
面试题 10.01,https://leetcode-cn.com/problems/sorted-merge-lcci | |
面试题 10.02,https://leetcode-cn.com/problems/group-anagrams-lcci | |
面试题 10.03,https://leetcode-cn.com/problems/search-rotate-array-lcci | |
面试题 10.05,https://leetcode-cn.com/problems/sparse-array-search-lcci | |
面试题 10.09,https://leetcode-cn.com/problems/sorted-matrix-search-lcci | |
面试题 10.10,https://leetcode-cn.com/problems/rank-from-stream-lcci | |
面试题 10.11,https://leetcode-cn.com/problems/peaks-and-valleys-lcci | |
面试题 16.01,https://leetcode-cn.com/problems/swap-numbers-lcci | |
面试题 16.02,https://leetcode-cn.com/problems/words-frequency-lcci | |
面试题 16.03,https://leetcode-cn.com/problems/intersection-lcci | |
面试题 16.04,https://leetcode-cn.com/problems/tic-tac-toe-lcci | |
面试题 16.05,https://leetcode-cn.com/problems/factorial-zeros-lcci | |
面试题 16.06,https://leetcode-cn.com/problems/smallest-difference-lcci | |
面试题 16.07,https://leetcode-cn.com/problems/maximum-lcci | |
面试题 16.08,https://leetcode-cn.com/problems/english-int-lcci | |
面试题 16.09,https://leetcode-cn.com/problems/operations-lcci | |
面试题 16.10,https://leetcode-cn.com/problems/living-people-lcci | |
面试题 16.11,https://leetcode-cn.com/problems/diving-board-lcci | |
面试题 16.13,https://leetcode-cn.com/problems/bisect-squares-lcci | |
面试题 16.14,https://leetcode-cn.com/problems/best-line-lcci | |
面试题 16.15,https://leetcode-cn.com/problems/master-mind-lcci | |
面试题 16.16,https://leetcode-cn.com/problems/sub-sort-lcci | |
面试题 16.17,https://leetcode-cn.com/problems/contiguous-sequence-lcci | |
面试题 16.18,https://leetcode-cn.com/problems/pattern-matching-lcci | |
面试题 16.19,https://leetcode-cn.com/problems/pond-sizes-lcci | |
面试题 16.20,https://leetcode-cn.com/problems/t9-lcci | |
面试题 16.21,https://leetcode-cn.com/problems/sum-swap-lcci | |
面试题 16.22,https://leetcode-cn.com/problems/langtons-ant-lcci | |
面试题 16.24,https://leetcode-cn.com/problems/pairs-with-sum-lcci | |
面试题 16.25,https://leetcode-cn.com/problems/lru-cache-lcci | |
面试题 16.26,https://leetcode-cn.com/problems/calculator-lcci | |
面试题 17.01,https://leetcode-cn.com/problems/add-without-plus-lcci | |
面试题 17.04,https://leetcode-cn.com/problems/missing-number-lcci | |
面试题 17.05,https://leetcode-cn.com/problems/find-longest-subarray-lcci | |
面试题 17.06,https://leetcode-cn.com/problems/number-of-2s-in-range-lcci | |
面试题 17.07,https://leetcode-cn.com/problems/baby-names-lcci | |
面试题 17.08,https://leetcode-cn.com/problems/circus-tower-lcci | |
面试题 17.09,https://leetcode-cn.com/problems/get-kth-magic-number-lcci | |
面试题 17.10,https://leetcode-cn.com/problems/find-majority-element-lcci | |
面试题 17.11,https://leetcode-cn.com/problems/find-closest-lcci | |
面试题 17.12,https://leetcode-cn.com/problems/binode-lcci | |
面试题 17.13,https://leetcode-cn.com/problems/re-space-lcci | |
面试题 17.14,https://leetcode-cn.com/problems/smallest-k-lcci | |
面试题 17.15,https://leetcode-cn.com/problems/longest-word-lcci | |
面试题 17.16,https://leetcode-cn.com/problems/the-masseuse-lcci | |
面试题 17.17,https://leetcode-cn.com/problems/multi-search-lcci | |
面试题 17.18,https://leetcode-cn.com/problems/shortest-supersequence-lcci | |
面试题 17.19,https://leetcode-cn.com/problems/missing-two-lcci | |
面试题 17.20,https://leetcode-cn.com/problems/continuous-median-lcci | |
面试题 17.21,https://leetcode-cn.com/problems/volume-of-histogram-lcci | |
面试题 17.22,https://leetcode-cn.com/problems/word-transformer-lcci | |
面试题 17.23,https://leetcode-cn.com/problems/max-black-square-lcci | |
面试题 17.24,https://leetcode-cn.com/problems/max-submatrix-lcci | |
面试题 17.25,https://leetcode-cn.com/problems/word-rectangle-lcci | |
面试题 17.26,https://leetcode-cn.com/problems/sparse-similarity-lcci` | |
func id2map() map[string]string { | |
ret := map[string]string{} | |
for _, row := range strings.Split(record, "\n") { | |
t := strings.SplitN(row, ",", 2) | |
_, err := strconv.ParseInt(t[0], 10, 32) | |
if err != nil { | |
continue | |
} | |
ret[t[0]] = t[1] | |
} | |
return ret | |
} | |
func main() { | |
if len(os.Args) <= 1 { | |
fmt.Println("Please input the serial number!") | |
return | |
} | |
i2m := id2map() | |
url, ok := i2m[os.Args[1]] | |
if !ok { | |
fmt.Println("Not found!") | |
return | |
} else { | |
fmt.Println(url) | |
exec.Command("/usr/bin/open", url).Run() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment