mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-28 04:33:42 +08:00
contents(algo): split recommended qns into essential vs practice
This commit is contained in:
@ -192,15 +192,22 @@ print(graph_topo_sort(4, [[0, 1], [0, 2], [2, 1], [3, 0]]))
|
||||
# [1, 2, 0, 3]
|
||||
```
|
||||
|
||||
## Recommended questions
|
||||
## Essential questions
|
||||
|
||||
_These are essential questions to practice if you're studying for this topic._
|
||||
|
||||
- [Number of Islands](https://leetcode.com/problems/number-of-islands/)
|
||||
- [Flood Fill](https://leetcode.com/problems/flood-fill)
|
||||
- [01 Matrix](https://leetcode.com/problems/01-matrix/)
|
||||
|
||||
## Recommended practice questions
|
||||
|
||||
_These are recommended questions to practice after you have studied for the topic and have practiced the essential questions._
|
||||
|
||||
- Breadth-first search
|
||||
- [01 Matrix](https://leetcode.com/problems/01-matrix/)
|
||||
- [Rotting Oranges](https://leetcode.com/problems/rotting-oranges/)
|
||||
- [Minimum Knight Moves (LeetCode Premium)](https://leetcode.com/problems/minimum-knight-moves)
|
||||
- Either search
|
||||
- [Flood Fill](https://leetcode.com/problems/flood-fill)
|
||||
- [Number of Islands](https://leetcode.com/problems/number-of-islands/)
|
||||
- [Clone Graph](https://leetcode.com/problems/clone-graph/)
|
||||
- [Pacific Atlantic Water Flow](https://leetcode.com/problems/pacific-atlantic-water-flow/)
|
||||
- [Number of Connected Components in an Undirected Graph (LeetCode Premium)](https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/)
|
||||
|
Reference in New Issue
Block a user