diff --git a/python/Daily-Problem-1388/main.py b/python/Daily-Problem-1388/main.py new file mode 100644 index 0000000..99e708b --- /dev/null +++ b/python/Daily-Problem-1388/main.py @@ -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!")