feat: Add Insertion sort
This commit is contained in:
+7
-1
@@ -1,7 +1,13 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"dsa.go/pkg/algo"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fmt.Println("Learning and Practicing DSA in Go.")
|
||||
|
||||
algo.InsertionSort([]int{5, 2, 4, 6, 1, 3}, 6)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user