1
0
Fork 0
adventofcode/2024/helper/math.go
2024-12-02 16:18:52 +01:00

9 lines
78 B
Go

package helper
func Abs(x int) int {
if x < 0 {
return -x
}
return x
}