# Graphs

- [Number of Islands](/leetcode-problems/graphs/number-of-islands.md): DFS
- [Max Area of Island](/leetcode-problems/graphs/max-area-of-island.md): DFS
- [Island Perimeter](/leetcode-problems/graphs/island-perimeter.md): DFS
- [Number of Distinct Islands](/leetcode-problems/graphs/number-of-distinct-islands.md): DFS
- [Surrounded Regions](/leetcode-problems/graphs/surrounded-regions.md): DFS
- [Walls and Gates](/leetcode-problems/graphs/walls-and-gates.md): BFS
- [Rotting Oranges](/leetcode-problems/graphs/rotting-oranges.md): BFS
- [As Far from Land as Possible](/leetcode-problems/graphs/as-far-from-land-as-possible.md): BFS
- [01 Matrix](/leetcode-problems/graphs/01-matrix.md): BFS
- [Shortest Path in Binary Matrix](/leetcode-problems/graphs/shortest-path-in-binary-matrix.md): BFS
- [Minimum Knight Moves](/leetcode-problems/graphs/minimum-knight-moves.md): BFS
- [Shortest Bridge](/leetcode-problems/graphs/shortest-bridge.md): BFS
- [Minesweeper](/leetcode-problems/graphs/minesweeper.md): BFS
