aoc2024/day-21/internal/pad/util.go

8 lines
89 B
Go

package pad
import "math"
func absInt(n int) int {
return int(math.Abs(float64(n)))
}