https://github.com/mdanilov/cracking-coding
Programming Questions & Solutions in C++
https://github.com/mdanilov/cracking-coding
cracking-the-coding-interview programming-challenges
Last synced: 9 days ago
JSON representation
Programming Questions & Solutions in C++
- Host: GitHub
- URL: https://github.com/mdanilov/cracking-coding
- Owner: mdanilov
- Created: 2020-06-03T08:47:40.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-09T17:40:45.000Z (over 1 year ago)
- Last Synced: 2024-11-09T18:30:18.640Z (over 1 year ago)
- Topics: cracking-the-coding-interview, programming-challenges
- Language: C++
- Homepage:
- Size: 122 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cracking the Coding Interview C++

Solutions for [Cracking the Coding Interview 6th Edition](http://www.amazon.com/Cracking-Coding-Interview-6th-Edition/dp/0984782850) by [Gayle Laakmann McDowell](http://www.gayle.com/) 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:
``` none
git clone --recurse-submodules https://github.com/mdanilov/cracking-coding.git
cd cracking-coding
mkdir build && cd build && cmake ..
cmake --build .
ctest
```