diff --git a/README.md b/README.md index 6a63c07..51d0c4e 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,11 @@ usage 3. Execute `go build bubble_sort.go` and `./bubble_sort` +todo +------ + + * Add `Makefile` + contribution ------------ diff --git a/sorting/selection_sort b/sorting/selection_sort new file mode 100755 index 0000000..f9a7c50 Binary files /dev/null and b/sorting/selection_sort differ diff --git a/sorting/selection_sort.go b/sorting/selection_sort.go new file mode 100644 index 0000000..dad4ed5 --- /dev/null +++ b/sorting/selection_sort.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("") +}