Skip to content

Instantly share code, notes, and snippets.

@sagivo
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sagivo/9c8a7a97225c0a20355a to your computer and use it in GitHub Desktop.
Save sagivo/9c8a7a97225c0a20355a to your computer and use it in GitHub Desktop.
sorting in go
import "sort"
func main() {
arr := []int{2,4,3,1}
sort.Ints(arr)
fmt.Println(arr) // => [1,2,3,4]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment