I don’t know what is wrong in code but everything seems perfect still 1 test case is not passed
All testcases are not getting cleared
hi @numanshaikh25
try this code–>
#include<iostream>
using namespace std;
bool isSorted(int* A, int n)
{
if(n==0||n==1)
return true;
if(A[0]<=A[1] && isSorted(A+1,n-1))
return true;
return false;
}
int main() {
int n;
cin>>n;
int A[n];
for(int i=0;i<n;i++)
{
cin>>A[i];
}
if(isSorted(A,n))
cout<<"true";
else
cout<<"false";
return 0;
}
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.