1
0
mirror of https://github.com/golang/go synced 2024-09-30 03:34:51 -06:00

sort: use the builtin min function

This commit is contained in:
Muhammad Falak R Wani 2023-08-07 18:52:08 +05:30
parent 009c628b4d
commit c6fe3acc41
No known key found for this signature in database
GPG Key ID: D323A5E0174C86DD

View File

@ -415,13 +415,6 @@ func (d *testingData) Swap(i, j int) {
d.data[i], d.data[j] = d.data[j], d.data[i]
}
func min(a, b int) int {
if a < b {
return a
}
return b
}
func lg(n int) int {
i := 0
for 1<<uint(i) < n {