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

8 lines
89 B
Go
Raw Permalink Normal View History

2024-12-25 14:45:38 +00:00
package pad
import "math"
func absInt(n int) int {
return int(math.Abs(float64(n)))
}