Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 2.75 KB

File metadata and controls

38 lines (31 loc) · 2.75 KB

Leetcode compact list

  • I use LC time tracking to keep track of how many times I solves a question and how long I spent each time. Once I finish non-trivial medium LC questions 3 times, I have absolutely no issues solving them in actual interviews (sometimes within 8-10 minutes). It makes a big difference.

  • This Leetcode post combines 36 tips and tricks in improving Leetcode problem solving skills.

Tree

Recursive/Graph/DP

BST

LinkedList

  • Contrary to popular belief, no body really asked LinkedList questions during the interview. There is one exception where you need to use LinkedList to implement LRU. Copy list with random pointer

Design