alexhagiopol / cracking-the-coding-interview

:books: C++ and Python solutions with automated tests for Cracking the Coding Interview 6th Edition.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cracking The Coding Interview Solutions with Automated Unit Tests

  • ✅ C++ Solutions
  • ✅ Python Solutions
  • ✅ Automated Unit Tests
  • ✅ Active Development
  • ✅ Multiplatform Support: Mac, Linux, and Windows

Introduction

This repo contains C++ and Python solutions for Gayle Laakmann McDowell's Cracking the Coding Interview 6th Edition. Admittedly, there are other GitHub repositories with solutions for this book. But how do you know that their code is actually correct? If it's untested, then you don't!

In this project, every C++ solution has unit tests using the C++ Catch framework, and every Python solution has unit tests using the Python unittest framework. We enforce test correctness automatically using continuous integration servers ensuring that the solutions are made of living code that gets executed and tested on every single commit. To my knowledge, this is the Internet's only solutions repository with this level of testing rigor: >90% automated test coverage means you can reference and contribute solutions with confidence.

Table of Contents

  1. C++ Unit Tests
  2. Chapter 1 - Arrays and Strings: 9 / 9 complete.
  3. Chapter 2 - Linked Lists: 8 / 8 complete.
  4. Chapter 3 - Stacks and Queues: 4 / 6 complete.
  5. Chapter 4 - Trees and Graphs: 11 / 12 complete.
  6. Chapter 5 - Bit Manipulation: 7 / 8 complete.
  7. Chapter 6 - Math and Logic: 0 / 10 complete.
  8. Chapter 7 - Object Oriented Design: 0 / 12 complete.
  9. Chapter 8 - Recursion and Dynamic Programming: 8 / 14 complete.
  10. Chapter 9 - System Design and Scalability: 0 / 8 complete.
  11. Chapter 10 - Sorting and Searching: 10 / 11 complete.
  12. Chapter 11 - Testing: 0 / 6 complete.
  13. Chapter 12 - C and C++: 10 / 11
  14. Chapter 13 - Java: N/A
  15. Chapter 14 - Databases: 0 / 7 complete.
  16. Chapter 15 - Threads and Locks: 0 / 4 complete.
  17. Chapter 16 - Moderate: 11 / 26 complete.
  18. Chapter 17 - Hard: 1 / 26 complete.
  19. Miscellaneous Exercises: 2 complete.

C++ Total: 81 solutions complete.

  1. Python Unit tests
  2. Chapter 1 - Arrays and Strings: 9 / 9 complete.
  3. Chapter 2 - Linked Lists: 8 / 8 complete.
  4. Chapter 3 - Stacks and Queues: 6 / 6 complete.
  5. Chapter 4 - Trees and Graphs: 11 / 12 complete.
  6. Chapter 5 - Bit Manipulation: 7 / 8 complete.
  7. Chapter 6 - Math and Logic: 0 / 10 complete.
  8. Chapter 7 - Object Oriented Design: 0 / 12 complete.
  9. Chapter 8 - Recursion and Dynamic Programming: 11 / 14 complete.
  10. Chapter 9 - System Design and Scalability: 0 / 8 complete.
  11. Chapter 10 - Sorting and Searching: 1 / 11 complete.
  12. Chapter 11 - Testing: 0 / 6 complete.
  13. Chapter 12 - C and C++: N/A
  14. Chapter 13 - Java: N/A
  15. Chapter 14 - Databases: 0 / 7 complete.
  16. Chapter 15 - Threads and Locks: N/A
  17. Chapter 16 - Moderate: 2 / 26 complete.
  18. Chapter 17 - Hard: 3 / 26 complete.

Python Total: 58 solutions complete.

Grand Total: 139 unique solutions complete.

Building:

Mac:

Mac usage requires installing the package managers Homebrew and Pip which is done for you in the Makefile:

git clone https://github.com/alexhagiopol/cracking-the-coding-interview.git ctci
cd ctci
make configure-mac

Ubuntu:

git clone https://github.com/alexhagiopol/cracking-the-coding-interview.git
cd ctci
make configure-ubuntu

Windows:

For Windows users, I recommend developing this project using the Windows Subsystem for Linux (WSL) feature of Windows 10 and then following the Ubuntu build and testing instructions inside WSL. This recommendation is due to the use of Ubuntu, CMake, and makefile based build and execution systems on the servers that automatically test changes to the code. For more on Windows development, see the Appendix section at the end of this page.

Testing:

Testing is the most important part of this project: only the unit tests define the problem being solved. In the root directory, execute the following to run all tests in Python and C++:

make test

make test is the command I use most while developing this project. My workflow follows:

  1. I read a problem and encode the problem definition by implementing its unit tests.
  2. I execute make test to see where the project fails to satisfy the unit tests.
  3. I add to the implementation of the problem solution until make test succeeds.

Optional: Generating a Test Coverage % Report Locally (Python support only):

This will show exactly which lines are not covered by tests in each Python source file:

pip install coverage
make test_coverage

Contributing

The goal of this project is to write a tested Python and C++ solution for every problem in the 6th edition of the textbook. I definitely need help, so PRs are welcome. There is much to do because each solution needs its own small dataset and infrastructure in order to be tested. Here are some ways you can help:

  1. Fixing bugs 🐛.
  2. Solving or improving solutions to problems in either language (see the completion progress in the table of contents).
  3. Adding more unit tests to increase the test coverage %.
  4. Implementing automated C++ test coverage measurement using gcov.
  5. Integrating automated test coverage % reporting for both Python and C++ via Coveralls.
  6. Adding prose solution descriptions for problems that don't have them.

If you have any contributions, please make a PR to the master branch. Feel free to message me for clarification on any of the above items.

Appendix: Windows Development

On my own Windows machine, I develop using CLion running natively in Windows and test the code using make test in a WSL terminal window. For users who do not want to use WSL, I have developed the build and test methodology below:

Building

The project can be developed purely on Windows without WSL by using Visual Studio 2017. First clone the code:

git clone https://github.com/alexhagiopol/cracking-the-coding-interview.git
cd ctci
git submodule update --init

Then, install Python3 and numpy using your method of choice. I prefer installing Python3 and pip3 from the official website then installing numpy via pip:

pip install numpy

Then, open the project in Visual Studio 2017 which has CMake support. I've found that best the workflow is to use Visual Studio to edit code and use debugging functionality. Before building the code, you must follow these instructions to tell Visual Studio to download PDBs it needs. Additionally, this article describes Visual Studio CMake support in more detail if you're interested. A CMakeSettings.json file in the root project directory sets the location of the Visual Studio build folder to be inside the root folder of the project.

Testing

Running the tests and seeing their output is best done from a PowerShell window since VisualStudio in CMake mode does not allow the console output of the tests.exe and tests.py files to remain visible even when pressing CTRL + F5 as described in this post which applies to "normal" Visual Studio use. I am monitoring the situation re: Visual Studio, and when I find better solutions I will implement them or post them. If you know of something better, please contact me.

In the meantime, from the project root directory, you can run the Python tests using ...

python tests.py

... and you can run the C++ tests using ...

.\build\x64-Debug\tests.exe

About

:books: C++ and Python solutions with automated tests for Cracking the Coding Interview 6th Edition.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 64.0%Language:Python 33.5%Language:C 1.2%Language:CMake 0.9%Language:Makefile 0.3%