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