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

Method removeRear

Queue.py:54–55  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

52 return self.items.pop()
53
54 def removeRear(self):
55 return self.items.pop(0)
56
57 def size(self):
58 return len(self.items)

Callers 1

palchekerFunction · 0.95

Calls 1

popMethod · 0.45

Tested by

no test coverage detected