An open API service indexing awesome lists of open source software.

https://github.com/mxssl/selectionsortgolang

Selection Sort implementation in Go (Golang)
https://github.com/mxssl/selectionsortgolang

algorithm go golang selectionsort

Last synced: 7 months ago
JSON representation

Selection Sort implementation in Go (Golang)

Awesome Lists containing this project

README

          

# Selection Sort

Selection Sort implementation in Go (Golang).

`Time Complexity: O(n^2)`

`Space Complexity: O(1)`

```Bash
$ go test -v -cover ./...
=== RUN TestCase
--- PASS: TestCase (0.00s)
PASS
coverage: 84.6% of statements
ok github.com/mxssl/SelectionSortGolang 0.006s coverage: 84.6% of statements
```