top of page
Search
Evaluate Reverse Polish Notation
Reverse Polish Notation (RPN), also known as postfix notation, is a useful format for calculators and expression evaluation because it...
4 days ago4 min read
Min Stack
Maintaining a stack that can return its minimum value in constant time is a neat warm‑up that mirrors real‑world needs like tracking the...
4 days ago4 min read
Implement a Queue Using Stacks
Building a queue out of stacks is a classic exercise in adapting one data structure to mimic another. It’s not only a great warm‑up for...
4 days ago4 min read
Valid Parentheses
Checking whether a string of parentheses is valid is one of the most common warm‑ups in interviews. It’s directly applicable to parsing...
4 days ago3 min read
bottom of page