This is a collection of different algorithms written in Go Lang. The purpose of this package is to define basic algorithms in a concise, but readable form. However, no (pre)mature optimizations should be expected here and code should never be used in production.
- [x] coprime
- [x] maxsubarray
- [ ] isprime
- [x] factorial
- [x] fibonacci
- [x] gcd
- [x] binary
- [x] linear
- [x] bubble
- [ ] insertion
- [ ] selection