Mastering The Coding Interview (Big Tech) - Course Outline: Zerotomastery - Io
Mastering The Coding Interview (Big Tech) - Course Outline: Zerotomastery - Io
Course Outline
zerotomastery.io
Arrays
Strings
Palindromes
Question #6a Valid Palindrome(Easy)
● Valid Palindrome Leetcode Question
● Solution #1 - Two Pointers From The Center Solution
● Solution #2 - Two Pointers From The Outside Solution
● Solution #3 - Compare Against Reverse Solution
Question #6b Almost Palindrome (Easy)
● Almost Palindrome Leetcode Question
● Final Code Solution Repl
Linked Lists
Stacks
Queues
Sorting
Question #13 Kth Largest Element (Medium)
● Kth Largest Element Leetcode Question
● Quicksort Solution Repl
● Hoare’s QuickSelect Solution Repl
Binary Search
Question #14 Start And End Of Target (Medium)
● Start And End Of Target Leetcode Question
● Code Solution Repl
Binary Trees
2D-Arrays
Traversals
DFS in 2D-Arrays
● DFS Code Repl
BFS in 2D-Arrays
● BFS Code Repl
Graphs
Dynamic Programming
Back Tracking
N-Queens (Hard)
● N-Queens Leetcode Question
● Backtracking Solution Code Repl
Interface Design
Tries