You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
192 B

package day11
import (
"log"
)
func Solve2() {
changes := 1
for changes > 0 {
changes = MakeSeatChanges(5, false)
}
log.Printf("2020-12-11.02: Answer: %d\n", CountOccupiedSeats())
}