Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Tiwarishashwat/InterviewCodes
/ Main
Method
Main
FirstThreeLargest.java:2–6 ·
view source on GitHub ↗
(String args[])
Source
from the content-addressed store, hash-verified
1
public
class
FirstThreeLargest{
2
public
static
void
Main(String args[])
3
{
4
int
arr[] = {2,7,9,3,6,1,11,8};
5
solve(arr);
6
}
7
public
static
void
solve(
int
arr[])
8
{
9
int
n=arr.length;
Callers
nothing calls this directly
Calls
1
solve
Method · 0.95
Tested by
no test coverage detected