Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 813 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 813 Bytes

Cracking the Coding Interview C++

CI

Solutions for Cracking the Coding Interview 6th Edition by Gayle Laakmann McDowell in C++ programming language.

Getting Started

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