data-structures-and-algorithms
Challenge Title
Code Challenge / Algorithm
Whiteboard Process
Approach & Efficiency
enqueue
Time Complexity: The time complexity of the code is O(1).
Space Complexity: The space complexity of the code is also O(1).
dequeue
Time Complexity: The time complexity of the code is O(n).
Space Complexity: The space complexity of the code is also O(n).
tests
test_pseudo_queue.py
Solution
pseudo_queue.py