1
0
Fork 0
adventofcode/helper/math.go

10 lines
78 B
Go
Raw Normal View History

2024-12-02 12:30:04 +00:00
package helper
func Abs(x int) int {
if x < 0 {
return -x
}
return x
}