letsgo/main.go

10 lines
181 B
Go
Raw Normal View History

2023-10-21 14:06:50 +02:00
package main
2023-10-22 19:37:54 +02:00
import "fmt"
2023-10-21 14:06:50 +02:00
import "clerie.de/letsgo/aud"
func main() {
aud.InsertionSort([]int {2,6,1,3,5,4})
2023-10-22 19:37:54 +02:00
fmt.Println(aud.TheOtherInsertionSort([]int {2,6,1,3,5,4}))
2023-10-21 14:06:50 +02:00
}