theme | layout | presenter | date |
---|---|---|---|
apple-basic |
cover |
Kelvin Chandra |
May 15, 2025 |
This file contains hidden or 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.io.* | |
import java.util.* | |
fun main() { | |
Solution().main() | |
} | |
class Solution { | |
fun main() { | |
solve() |
This file contains hidden or 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
// https://binarysearch.com/problems/Edges-that-Disconnect-the-Graph | |
import java.util.*; | |
class Solution { | |
static class Result { | |
int lowLink; | |
boolean isCycle; | |
Result(int lowLink, boolean isCycle) { |
OlderNewer