Files
advent-of-code-2022/day06/common/signal.go
2022-12-06 10:48:18 +01:00

14 lines
152 B
Go

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