MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

CPP/Problems/minimumNumberOfJump.cpp:89–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

87// { Driver Code Starts.
88
89int main()
90{
91 int t;
92 cin>>t;
93 while(t--)
94 {
95 int n,i,j;
96 cin>>n;
97 int arr[n];
98 for(int i=0; i<n; i++)
99 cin>>arr[i];
100 Solution obj;
101 cout<<obj.minJumps(arr, n)<<endl;
102 }
103 return 0;
104}
105 // } Driver Code Ends

Callers

nothing calls this directly

Calls 1

minJumpsMethod · 0.80

Tested by

no test coverage detected