MCPcopy Index your code
hub / github.com/qiyuangong/leetcode / pop

Method pop

java/716_Max_Stack.java:61–63  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

59 }
60
61 public int pop() {
62 return unlink(tail.prev).val;
63 }
64
65 public int peek() {
66 return tail.prev.val;

Callers

nothing calls this directly

Calls 1

unlinkMethod · 0.95

Tested by

no test coverage detected