mirror of
https://github.com/TheAlgorithms/Python.git
synced 2026-03-13 09:50:19 +08:00
Create codespell.yml (#1698)
* fixup! Format Python code with psf/black push * Create codespell.yml * fixup! Format Python code with psf/black push
This commit is contained in:
@@ -35,7 +35,7 @@ def mincut(graph, source, sink):
|
||||
parent = [-1] * (len(graph))
|
||||
max_flow = 0
|
||||
res = []
|
||||
temp = [i[:] for i in graph] # Record orignial cut, copy.
|
||||
temp = [i[:] for i in graph] # Record original cut, copy.
|
||||
while BFS(graph, source, sink, parent):
|
||||
path_flow = float("Inf")
|
||||
s = sink
|
||||
|
||||
Reference in New Issue
Block a user