Understand LIFO (Last-In-First-Out) data structure behavior. You should know when to push, pop, and peek at the stack top, and recognize problems where the order of processing matters (most recently added item processed first).
Array-based stacks are most common in interviews. If you're rusty on stacks, implement one from scratch with push, pop, peek, and isEmpty operations before tackling the pattern problems in this section.