Created
August 27, 2020 06:44
-
-
Save Qs-F/d2fb1bf6e622c92cad8424abc128adc4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"sort" | |
) | |
func main() { | |
s := []int{2, 1, 3, 4} | |
sort.SliceStable(s, func(i, j int) bool { | |
// return false // as it is | |
// return true // reversed | |
}) | |
fmt.Println(s) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment