blob: aa4a82f75ffc377a1696bec57dbcf913d9925a07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package main
import (
"algorithms/ds"
"algorithms/sort"
"fmt"
)
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))
}
|