mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-10 14:50:46 +00:00
14 lines
139 B
Go
14 lines
139 B
Go
package util
|
|
|
|
import (
|
|
"strconv"
|
|
)
|
|
|
|
func MustConv(s string) int {
|
|
n, err := strconv.Atoi(s)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return n
|
|
}
|