Files
advent-of-code-2022/day06/common/signal.go
2022-12-15 14:56:28 +01:00

14 lines
153 B
Go

package common
import (
"bufio"
)
type Signal string
func Parse(scanner bufio.Scanner) Signal {
scanner.Scan()
return Signal(scanner.Text())
}