feat: Add Insertion sort

This commit is contained in:
2026-05-31 14:49:05 +05:30
parent f27f04ed1f
commit 9e613554b7
2 changed files with 26 additions and 1 deletions
+7 -1
View File
@@ -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)
}