Concept Flow - Implement Stack Using Queue
Initialize empty queue
Push operation: enqueue new element
Rotate queue to move new element to front
Pop operation: dequeue front element
Top operation: peek front element
Check if queue is empty for isEmpty
Use one queue to simulate stack by pushing elements and rotating queue so last pushed is always at front.
