An open API service indexing awesome lists of open source software.

https://github.com/jsmith/crackingthecodinginterview

My solutions to Cracking the Coding Interview questions!
https://github.com/jsmith/crackingthecodinginterview

Last synced: 14 days ago
JSON representation

My solutions to Cracking the Coding Interview questions!

Awesome Lists containing this project

README

          

# crackingthecodinginterview
My solutions to Cracking the Coding Interview questions!

## Running C++ Example
```
g++ -std=c++17 .cpp; ./a.out
```

## Running Python Examples
Some examples use pytest while others do not. I started using pytest so that I could actually see why my assertion failed!
```
python .py
```
**or**
```
pytest .py
```