change to is_sorted function

This commit is contained in:
ShazidMahsrafi 2023-07-25 17:32:01 +06:00
parent 1d75ddba8d
commit 67b6a1406c

View File

@ -14,16 +14,8 @@ void solve()
cin>>x; cin>>x;
v.push_back(x); v.push_back(x);
} }
bool unsorted=0;
for(int i=1; i<n; ++i) if(!is_sorted(v.begin(),v.end()))
{
if(v[i]<v[i-1])
{
unsorted=1;
break;
}
}
if(unsorted)
cout<<0<<endl; cout<<0<<endl;
else else
{ {