You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 1284 |[Minimum Number of Flips to Convert Binary Matrix to Zero Matrix](https://leetcode.com/problems/minimum-number-of-flips-to-convert-binary-matrix-to-zero-matrix/)|[C++](./C++/Minimum-Number-of-Flips-to-Convert-Binary-Matrix-to-Zero-Matrix.cpp)|_O(m * n * 2 ^ (m \* n))_|_O(2 ^ (m \* n))_| Hard | BFS ||
256
256
| 200 |[Number of Islands](https://leetcode.com/problems/number-of-islands/)|[Java](./Java/NumberOfIslands.java)| O(R \* C) | O(R \* C) | Medium | BFS |
257
-
| 200 |[Word Ladder](https://leetcode.com/problems/word-ladder/)|[Java](./Java/word-ladder.java)| O(N^2 \* M)| O(N \* M) | Medium | BFS |
257
+
| 200 |[Word Ladder](https://leetcode.com/problems/word-ladder/)|[Java](./Java/word-ladder.java)| O(N^2 \* M) | O(N \* M) | Medium | BFS |
258
258
259
259
<br/>
260
260
<divalign="right">
@@ -327,9 +327,10 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
327
327
328
328
# Graph
329
329
330
-
| # | Title | Solution | Time | Space | Difficulty | Tag | Note |
| 1042 |[Flower Planting with No Adjacent](https://leetcode.com/problems/flower-planting-with-no-adjacent/)|[Python](./Python/1042_FlowerPlantingwithNoAdjacent.py)|_O(V+E)_|_O(2V+E)_| Medium | Graph | Graph Coloring |
330
+
| # | Title | Solution | Time | Space | Difficulty | Tag | Note |
| 207 |[Course Schedule](https://leetcode.com/problems/course-schedule/)|[C++](./C++/Course Schedule.cpp) |_O(V+E)_|_O(V+E)_| Medium | Graph | Cycle Detection in Directed Graph |
333
+
| 1042 |[Flower Planting with No Adjacent](https://leetcode.com/problems/flower-planting-with-no-adjacent/)|[Python](./Python/1042_FlowerPlantingwithNoAdjacent.py)|_O(V+E)_|_O(2V+E)_| Medium | Graph | Graph Coloring |
0 commit comments