MCPcopy Create free account
hub / github.com/codedecks-in/LeetCode-Solutions / isFull

Method isFull

Python/622-Design-Circular-Queue.py:76–80  ·  view source on GitHub ↗

Checks whether the circular queue is full or not.

(self)

Source from the content-addressed store, hash-verified

74
75
76 def isFull(self) -> bool:
77 """
78 Checks whether the circular queue is full or not.
79 """
80 return self.size == self.max_size

Callers 1

enQueueMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected