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

Method isEmpty

Java/design-circular-deque.java:140–142  ·  view source on GitHub ↗

Checks whether the circular deque is empty or not.

()

Source from the content-addressed store, hash-verified

138
139 /** Checks whether the circular deque is empty or not. */
140 public boolean isEmpty() {
141 return (this.size == 0);
142 }
143
144 /** Checks whether the circular deque is full or not. */
145 public boolean isFull() {

Callers 7

ladderLengthMethod · 0.45
firstUniqCharMethod · 0.45
twoSumMethod · 0.45
reverseWordsMethod · 0.45
isAnagramUsingSortingMethod · 0.45
CBTInserterMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected