https://github.com/michaelfromyeg/ctci
📗 My solutions to coding problems from Gayle McDowell's CTCI.
https://github.com/michaelfromyeg/ctci
ctci
Last synced: 3 months ago
JSON representation
📗 My solutions to coding problems from Gayle McDowell's CTCI.
- Host: GitHub
- URL: https://github.com/michaelfromyeg/ctci
- Owner: michaelfromyeg
- License: mit
- Created: 2020-07-29T22:12:51.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-06T21:30:02.000Z (about 4 years ago)
- Last Synced: 2025-02-08T12:14:00.590Z (5 months ago)
- Topics: ctci
- Language: Python
- Homepage:
- Size: 26.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ctci 📗
My solutions to coding problems from Gayle McDowell's CTCI.
## Python
It's recommend you use a venv, to prevent running into issues with black.
Inside the Python folder, run:
`python -m venv env`
And then activate the virtual environment. I've included a PowerShell script for Windows users.
A Makefile provides a wrapper for some common commands you may want to run, such as `make format` and `make run`.
## C++
TODO