Watch
1
0
Fork
You've already forked advent-of-code
0

2021 Day 12

This commit is contained in:
Jeremy Kaplan 2021-12-11 22:12:58 -08:00
commit b5538b2540
2 changed files with 183 additions and 0 deletions

View file

@ -91,3 +91,7 @@ func Ints(text string) (ns []int) {
}
return
}
func ExLines(text string) []string {
return strings.Split(strings.TrimSpace(text), "\n")
}