Skip to content

Instantly share code, notes, and snippets.

@khaidir
Created August 12, 2022 23:01
Show Gist options
  • Save khaidir/f643c7512a11a96ea36301fd947082f7 to your computer and use it in GitHub Desktop.
Save khaidir/f643c7512a11a96ea36301fd947082f7 to your computer and use it in GitHub Desktop.
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