Skip to content

Files

Latest commit

May 18, 2020
74864f1 · May 18, 2020

History

History
19 lines (13 loc) · 271 Bytes

File metadata and controls

19 lines (13 loc) · 271 Bytes

Implement a Queue

Problem

Implement a Queue class. The class should be able to do the following:

  • Check if Queue is Empty
  • Enqueue
  • Dequeue
  • Return the size of the Queue

Code

Create your solution in the form:

class Queue(object):
    pass