Take as input N, the size of an integer array. Take one more input, which is a list of N integers separated by a space, and store that in an array. Write a recursive function which prints true if the array is sorted, and false otherwise.
Input Format
N x y z
Constraints
1 < N < 1000
-10^9 < i < 10^9, where i is an element of the array
solution link: https://ide.codingblocks.com/s/277774
one test case is not passing
