grokking_algorithms
grokking_algorithms copied to clipboard
Code for the book Grokking Algorithms (https://amzn.to/29rVyHf)
The directory [06_breadth-first_search](https://github.com/egonSchiele/grokking_algorithms/tree/master/06_breadth-first_search) contains two conceptually identical Go examples in different directories: [Golang](https://github.com/egonSchiele/grokking_algorithms/tree/master/06_breadth-first_search/Golang) and [golang](https://github.com/egonSchiele/grokking_algorithms/tree/master/06_breadth-first_search/golang). To avoid redundancy and to keep examples clean, I suggest keeping only one of them....
Since we were introduced to hash tables in the previous chapter, I thought it would be great to use them in practice in this example. Using a map to store...
…he parameter of type 'string'. fix: type guard in the person variable refactor: simplification of logic
fix voting status
This PR updates the code examples for the [Zig](https://ziglang.org/) programming language. Those examples where introduced in #242 but, since the Zig language is evolving at fast pace, they needed some...
This PR is introducing all solutions for the [D](https://dlang.org) programming language. Most of the examples were just ported from other languages with the same logic and approaches. All codes are...
- fix examples: make them same as in the book - make code cleaner - add comments
added selection sort for R