MCPcopy Index your code
hub / github.com/careercup/ctci / isEmpty

Method isEmpty

java/Chapter 3/Question3_3/SetOfStacks.java:58–61  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

56 }
57
58 public boolean isEmpty() {
59 Stack last = getLastStack();
60 return last == null || last.isEmpty();
61 }
62}
63

Callers

nothing calls this directly

Calls 2

getLastStackMethod · 0.95
isEmptyMethod · 0.95

Tested by

no test coverage detected