Skip to content

Latest commit

 

History

History
267 lines (247 loc) · 10.5 KB

README.md

File metadata and controls

267 lines (247 loc) · 10.5 KB

100+ Coding Interview Problems with Detailed Solutions

Go study guide →

Motivation

Keeping some tracking of most frequently appeared coding interview problems that provided me valuable and productive to spend time on. For each one, some brainstorming about process on how to approach and solve it, adding well-documented solutions with test cases, time and space complexity analysis. May this 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:

Table of Contents

Developing

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

References