Skip to content

Instantly share code, notes, and snippets.

View anztrax's full-sized avatar
🎯
Focusing

andrew ananta gondo 🎏 anztrax

🎯
Focusing
View GitHub Profile
// 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) {