Start 1388

This commit is contained in:
Tyler Perkins 2023-11-15 20:11:01 -05:00
parent a2ffe3eb9f
commit 6c302277a7
Signed by: tyler
GPG Key ID: 03B27509E17EFDC8
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
"""
Tyler Perkins
15-11-23
Good morning! Here's your coding interview problem for today.
This problem was asked by Apple.
Implement a queue using two stacks. Recall that a queue is a FIFO (first-in, first-out) data structure with the following methods: enqueue, which inserts an element into the queue, and dequeue, which removes it.
"""
print("Hello World!")