This commit is contained in:
Gokcehan 2020-11-06 15:14:26 +03:00
parent 279b0cf250
commit f877960661

View File

@ -215,7 +215,7 @@ func max(a, b int) int {
}
func mod(a, b int) int {
return (a % b + b) % b
return (a%b + b) % b
}
// We don't need no generic code