Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice
/ peek
Method
peek
Gfg/Java/Implementation of Stack.java:17–19 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
15
return
stackArray[top--];
16
}
17
public
long peek() {
18
return
stackArray[top];
19
}
20
public
boolean isEmpty() {
21
return
(top == -1);
22
}
Callers
4
getSkyline
Method · 0.45
buildTree
Method · 0.45
encode
Method · 0.45
nextLargerElement
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected