1
0
mirror of https://github.com/golang/go synced 2024-11-26 23:01:23 -07:00

sort: use the builtin min function

Change-Id: I9603de9abff8d5c8fb9efdf688ff1a5f8c7d19b2
GitHub-Last-Rev: c6fe3acc41
GitHub-Pull-Request: golang/go#61808
Reviewed-on: https://go-review.googlesource.com/c/go/+/516635
Auto-Submit: Keith Randall <khr@golang.org>
Run-TryBot: Keith Randall <khr@golang.org>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
This commit is contained in:
Muhammad Falak R Wani 2023-08-07 13:44:06 +00:00 committed by Gopher Robot
parent 215bcbc6ac
commit 0dc513b65a

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 {