MCPcopy Index your code
hub / github.com/Jack-Lee-Hiter/AlgorithmsByPython / removeFront

Method removeFront

Queue.py:51–52  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

49 self.items.append(item)
50
51 def removeFront(self):
52 return self.items.pop()
53
54 def removeRear(self):
55 return self.items.pop(0)

Callers 1

palchekerFunction · 0.95

Calls 1

popMethod · 0.45

Tested by

no test coverage detected