remove mathutil.Max

This commit is contained in:
LiHui
2021-09-29 09:35:18 +08:00
parent ad69b08a75
commit 09fc2867c4
3 changed files with 6 additions and 17 deletions

View File

@@ -1,9 +0,0 @@
package mathutil
// Max returns the larger of a and b.
func Max(a, b int) int {
if a >= b {
return a
}
return b
}