9 lines
76 B
Go
9 lines
76 B
Go
package utils
|
|
|
|
func Abs(x int) int {
|
|
if x < 0 {
|
|
return -x
|
|
}
|
|
return x
|
|
}
|