Skip to content

Commit

Permalink
fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
yennanliu committed Nov 9, 2024
1 parent f34b6fd commit ff574e5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ff574e5

Please sign in to comment.