Skip to content
arjunmullick edited this page Dec 20, 2020 · 1 revision

About

These are the most popular coding interview question from easy to hard in order.

The problem covers common pattern / algo in interview:

  • Binary search
  • Two pointers
  • Backtracking
  • DFS
  • BFS
  • Dynamic programming
  • Stack / Greedy / Heap
  • Swap corresponding values
  • Store one or more different values in the same pointer
  • Trie / Map

Reference :

14 Patterns to Ace Any Coding Interview Question https://hackernoon.com/14-patterns-to-ace-any-coding-interview-question-c5bb3357f6ed

Coding Interview Question

Additional Questions

Question by Concept

Arrays

Binary Search

Backtracking

Graph / Tree Search (BFS/DFS)

Trie