Created
August 12, 2022 23:01
-
-
Save khaidir/f643c7512a11a96ea36301fd947082f7 to your computer and use it in GitHub Desktop.
This file contains 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() { | |
data := []float64{4, -7, -5, 3, 3.3, 9, 0, 10, 0.2} | |
sort.Float64s(data) | |
fmt.Println("Ascending") | |
fmt.Println(data) | |
sort.Sort(sort.Reverse(sort.Float64Slice(data))) | |
fmt.Println("") | |
fmt.Println("Descending") | |
fmt.Println(data) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment