Go Algorithms: Sorts

I started with Go's sort [http://golang.org/pkg/sort/] package for some inspiration on how to build the API for my implementations. It is nice to be able to look at other approaches, especially when I'm more accusotmed to doing things in Node.js or…

Algorithms in Go

Lately I have been learning a lot about Go [http://golang.org]. I decided a great independent study subject would be to review Algorithms, Fourth Edition [http://algs4.cs.princeton.edu/home/] in the context of Go. However, this presents a few obsticles that ups the degree of difficulty. Most…