diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,5 +10,5 @@ func main() { fmt.Println("Hello to Algorithms Playground!") a := ds.RandomIntegers(100, 1000) fmt.Printf("Random: %v\n", a) - fmt.Printf("Sorted: %v\n", sort.Selection(a)) + fmt.Printf("Sorted: %v\n", sort.Insertion(a)) } |
