Implement stack using a queue
Sigiloso
I think the question is to implement a stack using a queue DS. For every push(), enqueu() in the queue. Then dequeu() every element and enqueue() the same immediately until we reach the element which was recently enqueued. This way we maintain the queue in the form expected by the stack (LIFO)