Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ main
Function
main
CPP/recursion/is_sorted.cpp:15–23 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
13
return false;
14
}
15
int main(){
16
cin.tie(0)->sync_with_stdio(0);
17
int arr[]={1,2,3,4,5,3};
18
int n;
19
n=sizeof(arr)/sizeof(int);
20
cout<<issorted(arr,0,n);
21
22
return 0;
23
}
Callers
nothing calls this directly
Calls
1
issorted
Function · 0.85
Tested by
no test coverage detected