Skip to content

Commit

Permalink
Update scc.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
e6nlaq authored Jan 11, 2025
1 parent be0ff08 commit 987c1e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/scc.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// Verified: https://atcoder.jp/contests/practice2/submissions/61317841

import { readFileSync } from "node:fs";
import { SCCGraph } from "ac-library-js/scc";
import { SccGraph } from "ac-library-js/scc";

function main(inp: string[][]): void {
const [N, M] = inp[0].map(Number);
const G = new SCCGraph(N);
const G = new SccGraph(N);

for (let i = 1; i <= M; i++) {
const [a, b] = inp[i].map(Number);
Expand Down

0 comments on commit 987c1e8

Please sign in to comment.