https://github.com/dtrifuno/ctci-python
https://github.com/dtrifuno/ctci-python
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dtrifuno/ctci-python
- Owner: dtrifuno
- License: mit
- Created: 2022-05-22T08:46:28.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-13T12:39:33.000Z (almost 3 years ago)
- Last Synced: 2025-01-17T01:08:28.249Z (4 months ago)
- Language: Python
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Solutions to _Cracking the Coding Interview, 6th Edition_
These are my Python solutions to the exercises in the book [Cracking the Coding Interview, 6th edition](https://www.crackingthecodinginterview.com/)
by _Gayle Laakmann McDowell_.All solutions are tested using parameterized testing with the [pytest](https://pytest.org/) framework.
## Usage
To download the package and execute all tests, run
```
git clone https://github.com/dtrifuno/ctci-python.git
cd ctci-python
poetry run pytest
```or, `poetry run pytest PATH/TO/SPECIFIC/TEST` to run only a particular test.
## License
[MIT](https://choosealicense.com/licenses/mit/)