Crack The Coding Interview Discussion
We will discuss specific solutions to Crack the Coding Interview questions. Please attempt each problem before coming (pick any language you want).
Upload your solutions by:
1. Forking this repo
https://github.com/code-mentoring/ctci.git
2. Add your source files to the chapter folder
ch#-SomeChapter/yourName_yourFile.ext
3. Submit pull request
You might need to keep your forked repo up to date with the code-mentoring repo as it moves along. It's good practice anyway when working on forked repos.
- Set an upstream repo:
- git remote add upstream https://github.com/code-mentoring/ctci.git
- Verify:
- git remote -v
- Fetch code-mentoring changes:
- git fetch upstream
- Then merge them into your local:
- git merge upstream/master
- Then update your remote fork:
- git push