1752. Check if Array Is Sorted and Rotated
#array
Check if the array was originally sorted in non-decreasing order, then rotated some number of positions (including zero).
Intuition
If the array is sorted then it will have 0 inversion, if a sorted array is rotated either clockwise or anti-clockwise direction the amount of inversion will be 1.
Approach
Complexity
Space Complexity
Time Complexity
Code
Last updated