MCPcopy Create free account
hub / github.com/Jack-Lee-Hiter/AlgorithmsByPython / __init__

Method __init__

Queue.py:2–3  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1class Queue:
2 def __init__(self):
3 self.items = []
4
5 def isEmpty(self):
6 return self.items == []

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected