summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2020-07-14 09:34:50 +0100
committerPaul Buetow <paul@buetow.org>2020-07-14 09:34:50 +0100
commitaee630b03f48a9f528a4a50e9dcb0fdc8ef20aa5 (patch)
tree152644259dd29dee9dac930cca9f26e4b9422112 /main.go
parent554a7a259f3feefb586374ac5a3b57acc99a4446 (diff)
add bench helper
Diffstat (limited to 'main.go')
-rw-r--r--main.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/main.go b/main.go
deleted file mode 100644
index 461095b..0000000
--- a/main.go
+++ /dev/null
@@ -1,14 +0,0 @@
-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.Insertion(a))
-}