TORONTO KIDS COMPUTER CLUB | Monday 20:00 Python Practice 21.05.03.
19382
post-template-default,single,single-post,postid-19382,single-format-standard,ajax_fade,page_not_loaded,,no_animation_on_touch,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Monday 20:00 Python Practice 21.05.03.

05 May Monday 20:00 Python Practice 21.05.03.

Question:
Base on the explanation about the deque data structure, please finish the following code:

class Deque:
def __init__(self):
pass

def isEmpty(self):
pass

def size(self):
pass

def addRear(self, item):
pass

def addFront(self, item):
pass

def removeRear(self):
pass

def removeFront(self):
pass

No Comments

Post A Comment