https://github.com/david-rodden/cracking-the-coding-interview
Working through all problems in Gayle Laakmann McDowell's "Cracking the Coding Interview"
https://github.com/david-rodden/cracking-the-coding-interview
Last synced: over 1 year ago
JSON representation
Working through all problems in Gayle Laakmann McDowell's "Cracking the Coding Interview"
- Host: GitHub
- URL: https://github.com/david-rodden/cracking-the-coding-interview
- Owner: David-Rodden
- Created: 2018-12-12T20:12:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-17T02:03:34.000Z (over 7 years ago)
- Last Synced: 2025-02-08T16:32:56.613Z (over 1 year ago)
- Language: Java
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
:book:Cracking the Coding Interview :computer:
========================================
*Cracking the Coding Interview* is a book written by Gayle Laakmann McDowell.
It gives a wide range of computer science-related problems to solve, dealing mostly in the realm of data structures and algorithms.
Here, you will find my solutions to these problems as I work through them.
There are three criteria I will follow when approaching a problem:
- Reading the question carefully as to not miss any crucial information.
- Working within the problem's given constraints.
- Implementing a solution in a clear manner, applying proper variable names and adding comments where deemed necessary.
- Implementing a solution with an ideal or reasonable time complexity.
- Showcasing the class/method's usage within the chapter's __TestingGrounds__.
I own the 6th edition, which can be found [here](http://a.co/d/4f8cHFy).