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!
- Host: GitHub
- URL: https://github.com/jsmith/crackingthecodinginterview
- Owner: jsmith
- Created: 2018-04-30T21:20:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-06T20:29:12.000Z (about 8 years ago)
- Last Synced: 2026-01-31T19:34:38.953Z (5 months ago)
- Language: Python
- Size: 114 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```