Skip to content

Instantly share code, notes, and snippets.

View sundaram2021's full-sized avatar
🎯
Focusing

Sundaram Kumar Jha sundaram2021

🎯
Focusing
View GitHub Profile
@sundaram2021
sundaram2021 / array.go
Created June 6, 2025 15:05
A Collection of Essential Go Array Algorithms
package main
import (
"fmt"
"sort"
)
func insertionSort(arr []int) {
for i := 1; i < len(arr); i++ {