Created
November 17, 2020 08:08
-
-
Save openaphid/8e82792fadaeda13fcc4458c544efeb9 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 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