Skip to content

Latest commit

 

History

History
387 lines (267 loc) · 30 KB

README.md

File metadata and controls

387 lines (267 loc) · 30 KB

Leetcode practice

Table of content

  1. Problems
  2. Interview
  3. Weekly Contest
  4. Biweekly Contest
  5. Permutation - Combination - Subset
  6. Tree
  7. Queue & Stack
  8. List
  9. Dynamic Programming
  10. Others

Problems

Interview

Weekly Contest

321. 2022-11-27

322. 2022-12-04

323. 2022-12-11

324. 2022-12-18

325. 2022-12-25

327. 2023-01-08

328. 2023-01-15

329. 2023-01-22

331. 2023-02-05

332. 2023-02-12

334. 2023-02-26

336. 2023-03-12

337. 2023-03-19

Biweekly Contest

92. 2022-11-26

93. 2022-12-10

94. 2022-12-24

95. 2023-01-07

96. 2023-01-21

97. 2023-02-04

98. 2023-02-18

99. 2023-03-04

100. 2023-03-18

Permutation - Combination - Subset

Permutation 排列

Combination 组合

Subset 子集

Tree

94.binary-tree-inorder-traversal (二叉树的中序遍历)

101.symmetric-tree (对称二叉树)

102.binary-tree-level-order-traversal (二叉树的层序遍历)

104.maximum-depth-of-binary-tree (二叉树的最大深度)

105.construct-binary-tree-from-preorder-and-inorder-traversal (从前序与中序遍历序列构造二叉树)

106.construct-binary-tree-from-inorder-and-postorder-traversal (从中序与后序遍历序列构造二叉树)

112.path-sum (路径总和)

116.populating-next-right-pointers-in-each-node (填充每个节点的下一个右侧节点指针)

117.populating-next-right-pointers-in-each-node-ii (填充每个节点的下一个右侧节点指针 II)

144.binary-tree-preorder-traversal (二叉树的前序遍历)

145.binary-tree-postorder-traversal (二叉树的后序遍历)

236.lowest-common-ancestor-of-a-binary-tree (二叉树的最近公共祖先)

297.serialize-and-deserialize-binary-tree (二叉树的序列化与反序列化)

Queue & Stack

622.design-circular-queue (设计循环队列)

200.number-of-islands (岛屿数量)

130.surrounded-regions (被围绕的区域)

752.open-the-lock (打开转盘锁)

279.perfect-squares (完全平方数)

List

206.reverse-linked-list (反转链表)

92.reverse-linked-list-ii (反转链表 II)

876.middle-of-the-linked-list (链表的中间结点)

Dynamic Programming

Others

1.two-sum (两数之和)

36.valid-sudoku (有效的数独)

37.sudoku-solver (解数独)

1323.maximum-69-number (6 和 9 组成的最大数字)

1732.find-the-highest-altitude (找到最高海拔)

557.reverse-words-in-a-string-iii (反转字符串中的单词 iii)

return to table of content