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)
- Host: GitHub
- URL: https://github.com/mxssl/selectionsortgolang
- Owner: mxssl
- Created: 2018-09-16T14:37:56.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-16T14:38:33.000Z (about 7 years ago)
- Last Synced: 2025-01-22T19:21:27.954Z (9 months ago)
- Topics: algorithm, go, golang, selectionsort
- Language: Go
- Size: 0 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```