mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-09 06:10:47 +00:00
8 lines
123 B
Go
8 lines
123 B
Go
package two
|
|
|
|
type sequence [4]int
|
|
|
|
func (s *sequence) shift(next int) {
|
|
s[0], s[1], s[2], s[3] = s[1], s[2], s[3], next
|
|
}
|