Skip to content

Commit aa7661a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4959c4a commit aa7661a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

networking_flow/dinic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def dfs(self, u: int, sink: int, flow: int, ptr: list) -> int:
9797
def max_flow(self, source: int, sink: int) -> int:
9898
"""
9999
Computes the maximum flow from source to sink.
100-
100+
101101
>>> dinic = Dinic(6)
102102
>>> dinic.add_edge(0, 1, 16)
103103
>>> dinic.add_edge(0, 2, 13)

0 commit comments

Comments
 (0)