remove unused code/functions

This commit is contained in:
swdee
2025-04-20 15:16:58 +12:00
parent 895770b239
commit 18bc88f956
5 changed files with 1 additions and 48 deletions

View File

@@ -350,17 +350,3 @@ func minInt(nums ...int) int {
return min
}
// maxInt finds the max value in a slice of integers
func maxInt(nums ...int) int {
max := nums[0]
for _, v := range nums {
if v > max {
max = v
}
}
return max
}