Week 5, Wednesday
February 4, 2026
Programmatic realization of a pile of stuff.
Stack functions:
push(item)pop() → itemLIFO: Last In, First Out

Programmatic realization of standing in line.
Queue functions:
enqueue(item)dequeue() → itemFIFO: First In, First Out
Python: from collections import deque
append(item)popleft() → item
Each of you has been given your own set of instructions that when executed, will reveal something great.
Complete the activity in PL to solve the puzzle!