Created
August 29, 2021 07:22
-
-
Save sdmcraft/0ca645c082d9ebaedf01856df605293f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.List; | |
class Solution { | |
public boolean canFinish(int numTasks, int[][] prerequisites) { | |
... | |
for (int i = 0; i < numTasks; i++) { | |
if (adjacencyList[i] != null) { | |
return false; | |
} | |
} | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment