summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index aa4a82f..461095b 100644
--- a/main.go
+++ b/main.go
@@ -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))
}