Skip to content

Commit a3a7fdf

Browse files
authored
更新2.4客户端面经
1 parent 32a359d commit a3a7fdf

File tree

1 file changed

+85
-80
lines changed

1 file changed

+85
-80
lines changed

bytedance/client.md

Lines changed: 85 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,139 +1,144 @@
11
|题目|出现次数|链接|
22
|-|-|-|
3+
|25. K 个一组翻转链表|16|https://leetcode-cn.com/problems/reverse-nodes-in-k-group|
34
|206. 反转链表|13|https://leetcode-cn.com/problems/reverse-linked-list|
4-
|25. K 个一组翻转链表|12|https://leetcode-cn.com/problems/reverse-nodes-in-k-group|
5+
|53. 最大子序和|13|https://leetcode-cn.com/problems/maximum-subarray|
56
|160. 相交链表|12|https://leetcode-cn.com/problems/intersection-of-two-linked-lists|
6-
|53. 最大子序和|12|https://leetcode-cn.com/problems/maximum-subarray|
7-
|146. LRU缓存机制|10|https://leetcode-cn.com/problems/lru-cache|
7+
|146. LRU缓存机制|12|https://leetcode-cn.com/problems/lru-cache|
88
|215. 数组中的第K个最大元素|10|https://leetcode-cn.com/problems/kth-largest-element-in-an-array|
9+
|21. 合并两个有序链表|9|https://leetcode-cn.com/problems/merge-two-sorted-lists|
910
|3. 无重复字符的最长子串|9|https://leetcode-cn.com/problems/longest-substring-without-repeating-characters|
11+
|236. 二叉树的最近公共祖先|8|https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree|
1012
|199. 二叉树的右视图|8|https://leetcode-cn.com/problems/binary-tree-right-side-view|
1113
|15. 三数之和|8|https://leetcode-cn.com/problems/3sum|
12-
|236. 二叉树的最近公共祖先|8|https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree|
13-
|21. 合并两个有序链表|8|https://leetcode-cn.com/problems/merge-two-sorted-lists|
14-
|1. 两数之和|6|https://leetcode-cn.com/problems/two-sum|
14+
|1. 两数之和|7|https://leetcode-cn.com/problems/two-sum|
1515
|剑指 Offer 09. 用两个栈实现队列|6|https://leetcode-cn.com/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof|
1616
|144. 二叉树的前序遍历|6|https://leetcode-cn.com/problems/binary-tree-preorder-traversal|
17+
|104. 二叉树的最大深度|6|https://leetcode-cn.com/problems/maximum-depth-of-binary-tree|
18+
|101. 对称二叉树|6|https://leetcode-cn.com/problems/symmetric-tree|
19+
|232. 用栈实现队列|6|https://leetcode-cn.com/problems/implement-queue-using-stacks|
1720
|958. 二叉树的完全性检验|6|https://leetcode-cn.com/problems/check-completeness-of-a-binary-tree|
18-
|543. 二叉树的直径|5|https://leetcode-cn.com/problems/diameter-of-binary-tree|
19-
|121. 买卖股票的最佳时机|5|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
21+
|113. 路径总和 II|6|https://leetcode-cn.com/problems/path-sum-ii|
22+
|121. 买卖股票的最佳时机|6|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
23+
|543. 二叉树的直径|6|https://leetcode-cn.com/problems/diameter-of-binary-tree|
24+
|102. 二叉树的层序遍历|6|https://leetcode-cn.com/problems/binary-tree-level-order-traversal|
25+
|41. 缺失的第一个正数|5|https://leetcode-cn.com/problems/first-missing-positive|
26+
|151. 翻转字符串里的单词|5|https://leetcode-cn.com/problems/reverse-words-in-a-string|
2027
|34. 在排序数组中查找元素的第一个和最后一个位置|5|https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array|
21-
|102. 二叉树的层序遍历|5|https://leetcode-cn.com/problems/binary-tree-level-order-traversal|
2228
|200. 岛屿数量|5|https://leetcode-cn.com/problems/number-of-islands|
23-
|104. 二叉树的最大深度|5|https://leetcode-cn.com/problems/maximum-depth-of-binary-tree|
24-
|101. 对称二叉树|5|https://leetcode-cn.com/problems/symmetric-tree|
25-
|232. 用栈实现队列|5|https://leetcode-cn.com/problems/implement-queue-using-stacks|
26-
|151. 翻转字符串里的单词|5|https://leetcode-cn.com/problems/reverse-words-in-a-string|
27-
|460. LFU缓存|4|https://leetcode-cn.com/problems/lfu-cache|
28-
|142. 环形链表 II|4|https://leetcode-cn.com/problems/linked-list-cycle-ii|
29-
|189. 旋转数组|4|https://leetcode-cn.com/problems/rotate-array|
29+
|141. 环形链表|4|https://leetcode-cn.com/problems/linked-list-cycle|
3030
|165. 比较版本号|4|https://leetcode-cn.com/problems/compare-version-numbers|
3131
|105. 从前序与中序遍历序列构造二叉树|4|https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal|
3232
|42. 接雨水|4|https://leetcode-cn.com/problems/trapping-rain-water|
3333
|344. 反转字符串|4|https://leetcode-cn.com/problems/reverse-string|
34-
|394. 字符串解码|4|https://leetcode-cn.com/problems/decode-string|
3534
|415. 字符串相加|4|https://leetcode-cn.com/problems/add-strings|
36-
|113. 路径总和 II|4|https://leetcode-cn.com/problems/path-sum-ii|
37-
|69. x 的平方根|3|https://leetcode-cn.com/problems/sqrtx|
38-
|2. 两数相加|3|https://leetcode-cn.com/problems/add-two-numbers|
39-
|剑指 Offer 22. 链表中倒数第k个节点|3|https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof|
40-
|300. 最长上升子序列|3|https://leetcode-cn.com/problems/longest-increasing-subsequence|
41-
|4. 寻找两个正序数组的中位数|3|https://leetcode-cn.com/problems/median-of-two-sorted-arrays|
35+
|394. 字符串解码|4|https://leetcode-cn.com/problems/decode-string|
36+
|460. LFU缓存|4|https://leetcode-cn.com/problems/lfu-cache|
37+
|2. 两数相加|4|https://leetcode-cn.com/problems/add-two-numbers|
38+
|142. 环形链表 II|4|https://leetcode-cn.com/problems/linked-list-cycle-ii|
39+
|189. 旋转数组|4|https://leetcode-cn.com/problems/rotate-array|
4240
|剑指 Offer 27. 二叉树的镜像|3|https://leetcode-cn.com/problems/er-cha-shu-de-jing-xiang-lcof|
43-
|141. 环形链表|3|https://leetcode-cn.com/problems/linked-list-cycle|
44-
|41. 缺失的第一个正数|3|https://leetcode-cn.com/problems/first-missing-positive|
41+
|54. 螺旋矩阵|3|https://leetcode-cn.com/problems/spiral-matrix|
4542
|145. 二叉树的后序遍历|3|https://leetcode-cn.com/problems/binary-tree-postorder-traversal|
46-
|162. 寻找峰值|3|https://leetcode-cn.com/problems/find-peak-element|
4743
|82. 删除排序链表中的重复元素 II|3|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list-ii|
44+
|162. 寻找峰值|3|https://leetcode-cn.com/problems/find-peak-element|
4845
|5. 最长回文子串|3|https://leetcode-cn.com/problems/longest-palindromic-substring|
46+
|56. 合并区间|3|https://leetcode-cn.com/problems/merge-intervals|
47+
|94. 二叉树的中序遍历|3|https://leetcode-cn.com/problems/binary-tree-inorder-traversal|
4948
|240. 搜索二维矩阵 II|3|https://leetcode-cn.com/problems/search-a-2d-matrix-ii|
5049
|103. 二叉树的锯齿形层次遍历|3|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal|
51-
|56. 合并区间|3|https://leetcode-cn.com/problems/merge-intervals|
52-
|46. 全排列|2|https://leetcode-cn.com/problems/permutations|
53-
|剑指 Offer 36. 二叉搜索树与双向链表|2|https://leetcode-cn.com/problems/er-cha-sou-suo-shu-yu-shuang-xiang-lian-biao-lcof|
54-
|438. 找到字符串中所有字母异位词|2|https://leetcode-cn.com/problems/find-all-anagrams-in-a-string|
55-
|62. 不同路径|2|https://leetcode-cn.com/problems/unique-paths|
56-
|110. 平衡二叉树|2|https://leetcode-cn.com/problems/balanced-binary-tree|
57-
|155. 最小栈|2|https://leetcode-cn.com/problems/min-stack|
58-
|283. 移动零|2|https://leetcode-cn.com/problems/move-zeroes|
59-
|33. 搜索旋转排序数组|2|https://leetcode-cn.com/problems/search-in-rotated-sorted-array|
60-
|19. 删除链表的倒数第N个节点|2|https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list|
50+
|剑指 Offer 36. 二叉搜索树与双向链表|3|https://leetcode-cn.com/problems/er-cha-sou-suo-shu-yu-shuang-xiang-lian-biao-lcof|
51+
|剑指 Offer 22. 链表中倒数第k个节点|3|https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof|
52+
|69. x 的平方根|3|https://leetcode-cn.com/problems/sqrtx|
53+
|300. 最长上升子序列|3|https://leetcode-cn.com/problems/longest-increasing-subsequence|
54+
|4. 寻找两个正序数组的中位数|3|https://leetcode-cn.com/problems/median-of-two-sorted-arrays|
55+
|19. 删除链表的倒数第N个节点|3|https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list|
6156
|226. 翻转二叉树|2|https://leetcode-cn.com/problems/invert-binary-tree|
57+
|977. 有序数组的平方|2|https://leetcode-cn.com/problems/squares-of-a-sorted-array|
6258
|315. 计算右侧小于当前元素的个数|2|https://leetcode-cn.com/problems/count-of-smaller-numbers-after-self|
63-
|54. 螺旋矩阵|2|https://leetcode-cn.com/problems/spiral-matrix|
64-
|662. 二叉树最大宽度|2|https://leetcode-cn.com/problems/maximum-width-of-binary-tree|
6559
|191. 位1的个数|2|https://leetcode-cn.com/problems/number-of-1-bits|
66-
|190. 颠倒二进制位|2|https://leetcode-cn.com/problems/reverse-bits|
60+
|17. 电话号码的字母组合|2|https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number|
61+
|662. 二叉树最大宽度|2|https://leetcode-cn.com/problems/maximum-width-of-binary-tree|
6762
|92. 反转链表 II|2|https://leetcode-cn.com/problems/reverse-linked-list-ii|
6863
|剑指 Offer 45. 把数组排成最小的数|2|https://leetcode-cn.com/problems/ba-shu-zu-pai-cheng-zui-xiao-de-shu-lcof|
64+
|1143. 最长公共子序列|2|https://leetcode-cn.com/problems/longest-common-subsequence|
65+
|190. 颠倒二进制位|2|https://leetcode-cn.com/problems/reverse-bits|
6966
|164. 最大间距|2|https://leetcode-cn.com/problems/maximum-gap|
7067
|7. 整数反转|2|https://leetcode-cn.com/problems/reverse-integer|
71-
|443. 压缩字符串|2|https://leetcode-cn.com/problems/string-compression|
7268
|739. 每日温度|2|https://leetcode-cn.com/problems/daily-temperatures|
7369
|136. 只出现一次的数字|2|https://leetcode-cn.com/problems/single-number|
70+
|443. 压缩字符串|2|https://leetcode-cn.com/problems/string-compression|
7471
|234. 回文链表|2|https://leetcode-cn.com/problems/palindrome-linked-list|
7572
|70. 爬楼梯|2|https://leetcode-cn.com/problems/climbing-stairs|
76-
|94. 二叉树的中序遍历|2|https://leetcode-cn.com/problems/binary-tree-inorder-traversal|
7773
|48. 旋转图像|2|https://leetcode-cn.com/problems/rotate-image|
7874
|20. 有效的括号|2|https://leetcode-cn.com/problems/valid-parentheses|
79-
|24. 两两交换链表中的节点|1|https://leetcode-cn.com/problems/swap-nodes-in-pairs|
80-
|剑指 Offer 62. 圆圈中最后剩下的数字|1|https://leetcode-cn.com/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof|
81-
|138. 复制带随机指针的链表|1|https://leetcode-cn.com/problems/copy-list-with-random-pointer|
82-
|257. 二叉树的所有路径|1|https://leetcode-cn.com/problems/binary-tree-paths|
83-
|55. 跳跃游戏|1|https://leetcode-cn.com/problems/jump-game|
84-
|128. 最长连续序列|1|https://leetcode-cn.com/problems/longest-consecutive-sequence|
85-
|59. 螺旋矩阵 II|1|https://leetcode-cn.com/problems/spiral-matrix-ii|
86-
|767. 重构字符串|1|https://leetcode-cn.com/problems/reorganize-string|
87-
|225. 用队列实现栈|1|https://leetcode-cn.com/problems/implement-stack-using-queues|
88-
|112. 路径总和|1|https://leetcode-cn.com/problems/path-sum|
89-
|670. 最大交换|1|https://leetcode-cn.com/problems/maximum-swap|
90-
|75. 颜色分类|1|https://leetcode-cn.com/problems/sort-colors|
91-
|122. 买卖股票的最佳时机 II|1|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii|
92-
|61. 旋转链表|1|https://leetcode-cn.com/problems/rotate-list|
93-
|148. 排序链表|1|https://leetcode-cn.com/problems/sort-list|
94-
|44. 通配符匹配|1|https://leetcode-cn.com/problems/wildcard-matching|
95-
|86. 分隔链表|1|https://leetcode-cn.com/problems/partition-list|
96-
|剑指 Offer 28. 对称的二叉树|1|https://leetcode-cn.com/problems/dui-cheng-de-er-cha-shu-lcof|
97-
|209. 长度最小的子数组|1|https://leetcode-cn.com/problems/minimum-size-subarray-sum|
98-
|98. 验证二叉搜索树|1|https://leetcode-cn.com/problems/validate-binary-search-tree|
99-
|120. 三角形最小路径和|1|https://leetcode-cn.com/problems/triangle|
100-
|518. 零钱兑换 II|1|https://leetcode-cn.com/problems/coin-change-2|
101-
|1047. 删除字符串中的所有相邻重复项|1|https://leetcode-cn.com/problems/remove-all-adjacent-duplicates-in-string|
75+
|124. 二叉树中的最大路径和|2|https://leetcode-cn.com/problems/binary-tree-maximum-path-sum|
76+
|46. 全排列|2|https://leetcode-cn.com/problems/permutations|
77+
|62. 不同路径|2|https://leetcode-cn.com/problems/unique-paths|
78+
|59. 螺旋矩阵 II|2|https://leetcode-cn.com/problems/spiral-matrix-ii|
79+
|438. 找到字符串中所有字母异位词|2|https://leetcode-cn.com/problems/find-all-anagrams-in-a-string|
80+
|225. 用队列实现栈|2|https://leetcode-cn.com/problems/implement-stack-using-queues|
81+
|75. 颜色分类|2|https://leetcode-cn.com/problems/sort-colors|
82+
|122. 买卖股票的最佳时机 II|2|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii|
83+
|110. 平衡二叉树|2|https://leetcode-cn.com/problems/balanced-binary-tree|
84+
|155. 最小栈|2|https://leetcode-cn.com/problems/min-stack|
85+
|518. 零钱兑换 II|2|https://leetcode-cn.com/problems/coin-change-2|
86+
|33. 搜索旋转排序数组|2|https://leetcode-cn.com/problems/search-in-rotated-sorted-array|
87+
|283. 移动零|2|https://leetcode-cn.com/problems/move-zeroes|
88+
|72. 编辑距离|1|https://leetcode-cn.com/problems/edit-distance|
89+
|347. 前 K 个高频元素|1|https://leetcode-cn.com/problems/top-k-frequent-elements|
10290
|77. 组合|1|https://leetcode-cn.com/problems/combinations|
10391
|140. 单词拆分 II|1|https://leetcode-cn.com/problems/word-break-ii|
92+
|80. 删除排序数组中的重复项 II|1|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array-ii|
10493
|322. 零钱兑换|1|https://leetcode-cn.com/problems/coin-change|
105-
|72. 编辑距离|1|https://leetcode-cn.com/problems/edit-distance|
106-
|347. 前 K 个高频元素|1|https://leetcode-cn.com/problems/top-k-frequent-elements|
107-
|23. 合并K个排序链表|1|https://leetcode-cn.com/problems/merge-k-sorted-lists|
108-
|剑指 Offer 07. 重建二叉树|1|https://leetcode-cn.com/problems/zhong-jian-er-cha-shu-lcof|
10994
|71. 简化路径|1|https://leetcode-cn.com/problems/simplify-path|
11095
|503. 下一个更大元素 II|1|https://leetcode-cn.com/problems/next-greater-element-ii|
111-
|977. 有序数组的平方|1|https://leetcode-cn.com/problems/squares-of-a-sorted-array|
112-
|260. 只出现一次的数字 III|1|https://leetcode-cn.com/problems/single-number-iii|
113-
|17. 电话号码的字母组合|1|https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number|
96+
|23. 合并K个排序链表|1|https://leetcode-cn.com/problems/merge-k-sorted-lists|
97+
|剑指 Offer 07. 重建二叉树|1|https://leetcode-cn.com/problems/zhong-jian-er-cha-shu-lcof|
11498
|88. 合并两个有序数组|1|https://leetcode-cn.com/problems/merge-sorted-array|
11599
|97. 交错字符串|1|https://leetcode-cn.com/problems/interleaving-string|
116-
|1143. 最长公共子序列|1|https://leetcode-cn.com/problems/longest-common-subsequence|
117-
|剑指 Offer 32 - III. 从上到下打印二叉树 III|1|https://leetcode-cn.com/problems/cong-shang-dao-xia-da-yin-er-cha-shu-iii-lcof|
100+
|260. 只出现一次的数字 III|1|https://leetcode-cn.com/problems/single-number-iii|
118101
|701. 二叉搜索树中的插入操作|1|https://leetcode-cn.com/problems/insert-into-a-binary-search-tree|
119102
|238. 除自身以外数组的乘积|1|https://leetcode-cn.com/problems/product-of-array-except-self|
120103
|480. 滑动窗口中位数|1|https://leetcode-cn.com/problems/sliding-window-median|
121-
|230. 二叉搜索树中第K小的元素|1|https://leetcode-cn.com/problems/kth-smallest-element-in-a-bst|
104+
|26. 删除排序数组中的重复项|1|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array|
105+
|剑指 Offer 32 - III. 从上到下打印二叉树 III|1|https://leetcode-cn.com/problems/cong-shang-dao-xia-da-yin-er-cha-shu-iii-lcof|
122106
|79. 单词搜索|1|https://leetcode-cn.com/problems/word-search|
123-
|93. 复原IP地址|1|https://leetcode-cn.com/problems/restore-ip-addresses|
107+
|230. 二叉搜索树中第K小的元素|1|https://leetcode-cn.com/problems/kth-smallest-element-in-a-bst|
124108
|328. 奇偶链表|1|https://leetcode-cn.com/problems/odd-even-linked-list|
125109
|16. 最接近的三数之和|1|https://leetcode-cn.com/problems/3sum-closest|
126110
|剑指 Offer 56 - II. 数组中数字出现的次数 II|1|https://leetcode-cn.com/problems/shu-zu-zhong-shu-zi-chu-xian-de-ci-shu-ii-lcof|
127-
|剑指 Offer 34. 二叉树中和为某一值的路径|1|https://leetcode-cn.com/problems/er-cha-shu-zhong-he-wei-mou-yi-zhi-de-lu-jing-lcof|
111+
|93. 复原IP地址|1|https://leetcode-cn.com/problems/restore-ip-addresses|
128112
|1233. 删除子文件夹|1|https://leetcode-cn.com/problems/remove-sub-folders-from-the-filesystem|
129113
|863. 二叉树中所有距离为 K 的结点|1|https://leetcode-cn.com/problems/all-nodes-distance-k-in-binary-tree|
114+
|8. 字符串转换整数 (atoi)|1|https://leetcode-cn.com/problems/string-to-integer-atoi|
115+
|剑指 Offer 34. 二叉树中和为某一值的路径|1|https://leetcode-cn.com/problems/er-cha-shu-zhong-he-wei-mou-yi-zhi-de-lu-jing-lcof|
130116
|32. 最长有效括号|1|https://leetcode-cn.com/problems/longest-valid-parentheses|
131-
|179. 最大数|1|https://leetcode-cn.com/problems/largest-number|
132117
|557. 反转字符串中的单词 III|1|https://leetcode-cn.com/problems/reverse-words-in-a-string-iii|
133118
|329. 矩阵中的最长递增路径|1|https://leetcode-cn.com/problems/longest-increasing-path-in-a-matrix|
134119
|242. 有效的字母异位词|1|https://leetcode-cn.com/problems/valid-anagram|
120+
|179. 最大数|1|https://leetcode-cn.com/problems/largest-number|
121+
|445. 两数相加 II|1|https://leetcode-cn.com/problems/add-two-numbers-ii|
122+
|剑指 Offer 52. 两个链表的第一个公共节点|1|https://leetcode-cn.com/problems/liang-ge-lian-biao-de-di-yi-ge-gong-gong-jie-dian-lcof|
135123
|面试题 01.06. 字符串压缩|1|https://leetcode-cn.com/problems/compress-string-lcci|
136124
|剑指 Offer 21. 调整数组顺序使奇数位于偶数前面|1|https://leetcode-cn.com/problems/diao-zheng-shu-zu-shun-xu-shi-qi-shu-wei-yu-ou-shu-qian-mian-lcof|
137-
|124. 二叉树中的最大路径和|1|https://leetcode-cn.com/problems/binary-tree-maximum-path-sum|
138-
|445. 两数相加 II|1|https://leetcode-cn.com/problems/add-two-numbers-ii|
139-
|剑指 Offer 52. 两个链表的第一个公共节点|1|https://leetcode-cn.com/problems/liang-ge-lian-biao-de-di-yi-ge-gong-gong-jie-dian-lcof|
125+
|129. 求根到叶子节点数字之和|1|https://leetcode-cn.com/problems/sum-root-to-leaf-numbers|
126+
|剑指 Offer 62. 圆圈中最后剩下的数字|1|https://leetcode-cn.com/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof|
127+
|138. 复制带随机指针的链表|1|https://leetcode-cn.com/problems/copy-list-with-random-pointer|
128+
|24. 两两交换链表中的节点|1|https://leetcode-cn.com/problems/swap-nodes-in-pairs|
129+
|55. 跳跃游戏|1|https://leetcode-cn.com/problems/jump-game|
130+
|128. 最长连续序列|1|https://leetcode-cn.com/problems/longest-consecutive-sequence|
131+
|767. 重构字符串|1|https://leetcode-cn.com/problems/reorganize-string|
132+
|257. 二叉树的所有路径|1|https://leetcode-cn.com/problems/binary-tree-paths|
133+
|112. 路径总和|1|https://leetcode-cn.com/problems/path-sum|
134+
|670. 最大交换|1|https://leetcode-cn.com/problems/maximum-swap|
135+
|334. 递增的三元子序列|1|https://leetcode-cn.com/problems/increasing-triplet-subsequence|
136+
|61. 旋转链表|1|https://leetcode-cn.com/problems/rotate-list|
137+
|148. 排序链表|1|https://leetcode-cn.com/problems/sort-list|
138+
|44. 通配符匹配|1|https://leetcode-cn.com/problems/wildcard-matching|
139+
|209. 长度最小的子数组|1|https://leetcode-cn.com/problems/minimum-size-subarray-sum|
140+
|98. 验证二叉搜索树|1|https://leetcode-cn.com/problems/validate-binary-search-tree|
141+
|86. 分隔链表|1|https://leetcode-cn.com/problems/partition-list|
142+
|剑指 Offer 28. 对称的二叉树|1|https://leetcode-cn.com/problems/dui-cheng-de-er-cha-shu-lcof|
143+
|1047. 删除字符串中的所有相邻重复项|1|https://leetcode-cn.com/problems/remove-all-adjacent-duplicates-in-string|
144+
|120. 三角形最小路径和|1|https://leetcode-cn.com/problems/triangle|

0 commit comments

Comments
 (0)