mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2026-04-09 02:23:36 +00:00
remove unnecessary assignment
This commit is contained in:
@@ -72,9 +72,7 @@ func next(
|
||||
}
|
||||
|
||||
for _, v := range P.List() {
|
||||
nextR := append(R, v)
|
||||
|
||||
next(nextR, P.Intersection(networks[v]), X.Intersection(networks[v]), cliquesChan, networks)
|
||||
next(append(R, v), P.Intersection(networks[v]), X.Intersection(networks[v]), cliquesChan, networks)
|
||||
|
||||
P.Remove(v)
|
||||
X.Add(v)
|
||||
|
||||
Reference in New Issue
Block a user