Compare commits

..

1 Commits

Author SHA1 Message Date
cacd140961 ^^ 2024-01-02 09:20:51 +00:00

View File

@@ -71,7 +71,7 @@ func two(lines []string) int {
go func(i int) { go func(i int) {
defer wg.Done() defer wg.Done()
mu.Lock() mu.Lock()
seedRanges = append(seedRanges, nextTransform(0, []bound{newBound(seeds[i], seeds[i]+seeds[i+1]-1)})...) seedRanges = append(seedRanges, nextTransform(0, []bound{newBound(seeds[i], seeds[i]+seeds[i+1])})...)
mu.Unlock() mu.Unlock()
}(i) }(i)
} }