I am building a database of most frequently appeared coding interview problems that I think are the most valuable and productive to spend time on. For each one, I am including my thoughts of process on how to approach and solve it, adding well-documented solutions with test cases, time and space complexity analysis. My goal is to help you get good algorithms and data structures so that you can prepare better for your next coding interviews.
These resources that I am looking at are: - Interview Cake - LeetCode - Cracking the Coding Interviews - Grokking the Coding Interview: Patterns for Coding Questions - Elements of Programming Interviews
If you’re interested in getting updates for this, feel free to join my mailing list here →
Count the number of questions:
make count
Clean up, lint source files, run tests and be ready for a push:
make ready
Test only:
make test
Test and report:
make cover
Test verbose:
make test-verbose
Lint:
make lint
Clean up:
make clean
For more information:
make help