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

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

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=. ./...
```