From ff574e53360c39e80bee5906d1dd55e0810f808d Mon Sep 17 00:00:00 2001 From: yennanliu Date: Sat, 9 Nov 2024 17:54:56 +0800 Subject: [PATCH] fix readme --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 4a8a16dd..15caa1ff 100644 --- a/README.md +++ b/README.md @@ -923,8 +923,7 @@ 286| [Walls and Gates](https://leetcode.com/problems/walls-and-gates/)| [Python](./leetcode_python/Breadth-First-Search/walls-and-gates.py), [Java](./leetcode_java/src/main/java/LeetCodeJava/BFS/WallsAndGates.java)| _O(m * n)_ | _O(g)_ | Medium | 🔒, `dfs`, `bfs` , `good basic`, `google`,`amazon`,`FB`| AGAIN******** (7) 310| [Minimum Height Trees](https://leetcode.com/problems/minimum-height-trees/)| [Python](./leetcode_python/Breadth-First-Search/minimum-height-trees.py) | _O(n)_ | _O(n)_ | Medium |`complex`| AGAIN (3) (not start) 433| [Minimum Genetic Mutation](https://leetcode.com/problems/minimum-genetic-mutation/)| [Python](./leetcode_python/Breadth-First-Search/minimum-genetic-mutation.py) | _O(n * b)_ | _O(b)_ | Medium |check `# 127 Word Ladder`, `good basic`| AGAIN*** (3) -444| [Sequence Reconstruction](https://leetcode.com/problems/sequence-reconstruction/)| [Python](./leetcode_python/Breadth-First-Search/sequence-reconstruction.py), [Java](./leetcode_java/src/main/java/LeetCodeJava/BFS/SequenceReconstruction.java) - | _O(n * s)_ | _O(n)_ | Medium | good trick, `Topological Sort` , `google`, `airbnb`| AGAIN******* (4) (not start) +444| [Sequence Reconstruction](https://leetcode.com/problems/sequence-reconstruction/)| [Python](./leetcode_python/Breadth-First-Search/sequence-reconstruction.py), [Java](./leetcode_java/src/main/java/LeetCodeJava/BFS/SequenceReconstruction.java)| _O(n * s)_ | _O(n)_ | Medium | good trick, `Topological Sort` , `google`, `airbnb`| AGAIN******* (4) (not start) 490| [The Maze](https://leetcode.com/problems/the-maze/)| [Python](./leetcode_python/Breadth-First-Search/the-maze.py) | _O(max(r, c) * w)_ | _O(w)_ | Medium | `basic`, `bfs`, `dfs`,`amazon`,`fb`| AGAIN**** (5) 505| [The Maze II](https://leetcode.com/problems/the-maze-ii/)|[Python](./leetcode_python/Breadth-First-Search/the-maze-ii.py) | _O(max(r, c) * wlogw)_ | _O(w)_ | Medium | `trick`,`bfs`,`dfs`,`AGAIN`, `google`, `fb`| AGAIN********* (6) 542| [01 Matrix](https://leetcode.com/problems/01-matrix/)| [Python](./leetcode_python/Breadth-First-Search/01-matrix.py) | _O(m * n)_ | _O(m * n)_ | Medium | DP, `trick`,`queue` | AGAIN*** (3)