mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-08 13:50:48 +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() {
|
for _, v := range P.List() {
|
||||||
nextR := append(R, v)
|
next(append(R, v), P.Intersection(networks[v]), X.Intersection(networks[v]), cliquesChan, networks)
|
||||||
|
|
||||||
next(nextR, P.Intersection(networks[v]), X.Intersection(networks[v]), cliquesChan, networks)
|
|
||||||
|
|
||||||
P.Remove(v)
|
P.Remove(v)
|
||||||
X.Add(v)
|
X.Add(v)
|
||||||
|
Loading…
Reference in New Issue
Block a user