package main import ( "fmt" log "github.com/sirupsen/logrus" ) func init() { log.SetLevel(log.DebugLevel) } func main() { lines := readlines() ans := one(lines) fmt.Printf("solution one: %d\n", ans) ans = two(lines) fmt.Printf("solution two: %d\n", ans) }