Skip to content

Crack the Coding Interview Solutions For Discussion

Notifications You must be signed in to change notification settings

code-mentoring/ctci

Repository files navigation

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

[How to] GitHub Forking and Pull Requests

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:
  • 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