Solutions for Cracking the Coding Interview 6th Edition by Gayle Laakmann McDowell in C++ programming language.
For each book chapter, there is a folder with the same name. Each question and solution for it located at the own CPP file inside the chapter folders. There is also a trivial test for each solution located at the end of the file. Execute the following commands to clone, build and run the tests:
git clone --recurse-submodules https://github.com/mdanilov/cracking-coding.git
cd cracking-coding
mkdir build && cd build && cmake ..
cmake --build .
ctest