12 lines
144 B
Go
12 lines
144 B
Go
package aoc
|
|
|
|
import "strconv"
|
|
|
|
func ParseInt(s string) int {
|
|
if i, err := strconv.Atoi(s); err != nil {
|
|
panic(err)
|
|
} else {
|
|
return i
|
|
}
|
|
}
|