mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
8 lines
180 B
C++
8 lines
180 B
C++
|
bool isAscOrder(std::vector<int> arr)
|
||
|
{
|
||
|
for (int i = 0, length = arr.size() - 1; i < length; i++)
|
||
|
if (arr[i] > arr[i + 1])
|
||
|
return false;
|
||
|
return true;
|
||
|
}
|