Skip to content

Instantly share code, notes, and snippets.

@openaphid
Created November 17, 2020 08:08
Show Gist options
  • Save openaphid/8e82792fadaeda13fcc4458c544efeb9 to your computer and use it in GitHub Desktop.
Save openaphid/8e82792fadaeda13fcc4458c544efeb9 to your computer and use it in GitHub Desktop.
package sort
type Interface interface {
Len() int
Less(i, j int) bool
Swap(i, j int)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment