https://github.com/moncho/grokking_algorithms
Algorithms from Grokking Algorithms book implemented in Go
https://github.com/moncho/grokking_algorithms
Last synced: 2 months ago
JSON representation
Algorithms from Grokking Algorithms book implemented in Go
- Host: GitHub
- URL: https://github.com/moncho/grokking_algorithms
- Owner: moncho
- Created: 2016-06-05T09:04:39.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-09-15T10:48:40.000Z (almost 8 years ago)
- Last Synced: 2025-12-30T13:12:24.730Z (6 months ago)
- Language: Go
- Size: 8.79 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Grokking Algorithms in Go
Go implementation of algorithms explained in the [Grokking Algorithms](https://www.manning.com/books/grokking-algorithms) book.
I have tried (to the best of my abilities) to be faithful to the implementation of the algorithms as they are described in the book.
## Running tests
```
go test ./...
```
## Running benchmarks
```bash
go test -benchmem -bench=. ./...
```