This little project aims to implement every algorithm in Grokking Algorithms (both non-recursive and recursive versions, whenever possible) using Golang as language of choice.
| Algorithm | Status |
|---|---|
| Binary Search | ✅ |
| Quicksort | ❌ |
| Breadth-First Search | ❌ |
| Dijkstra's Algorithm | ❌ |
| Greedy Algorithms | ❌ |
| K-Nearest Neighbors | ❌ |
Legend:
- ✅ Implemented
- ❌ Not yet implemented