Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nosarthur/golang-playground

dynamic programming
https://github.com/nosarthur/golang-playground

algorithm dynamic-programming go golang

Last synced: about 1 month ago
JSON representation

dynamic programming

Awesome Lists containing this project

README

        

# golang-playground

- dynamic programming
* fibonacci numbers
* knapsack problem
* longest increasing substring
- divide and conquer
- quick sort

## examples

To run the examples with manual input in the command line

```bash
go run fib.go
```

To see the benchmark results, run the following command in each example folder

```bash
GOGC=off go test -bench .
```