mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-07 14:10:49 +00:00
remove unnecessary assignment
This commit is contained in:
parent
1f033ea3a0
commit
13a92834a1
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user