mirror of
https://github.com/swdee/go-rknnlite.git
synced 2025-10-31 02:36:30 +08:00
remove unused code/functions
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user