1752. Check if Array Is Sorted and Rotated - Detailed Explanation
Problem Statement
Description:
You are given an array of distinct integers. An array is considered sorted and rotated if it is obtained by taking an array that was originally sorted in non-decreasing order and then performing a non-zero number of rotations. In other words, the array must be both sorted (in non-decreasing order) and rotated at least once.
Task:
Return true
if the array is sorted and rotated, and false
otherwise.
Important Note:
- If the array is completely sorted in non-decreasing order (i.e. not rotated at all), it should return
false
.
Example 1:
- Input:
nums = [3, 4, 5, 1, 2]
- Output:
true
- Explanation:
The original sorted array[1, 2, 3, 4, 5]
was rotated to get[3, 4, 5, 1, 2]
.
Example 2:
- Input:
nums = [1, 2, 3]
- Output:
false
- Explanation:
The array is sorted in non-decreasing order but not rotated.
Example 3:
- Input:
nums = [2, 1, 3, 4]
- Output:
false
- Explanation:
The array is not sorted and rotated from a non-decreasing array.
Constraints:
- The array contains distinct integers.
- The length of the array is at least 1.
Hints to Approach the Problem
-
Count the “Drop Points”:
If an array is obtained by rotating a sorted array, then it will have exactly one "drop" (a point where an element is greater than its next element) when you consider the array in a circular fashion. -
Circular Check:
Remember to compare the last element with the first element since the array is a rotated version of a sorted array. -
Edge Case – No Rotation:
If there is no drop (i.e. the array is fully sorted in non-decreasing order), then the array has not been rotated and you should returnfalse
.
Approach
Core Idea:
- Iterate through the array and count the number of times a drop occurs (i.e.,
nums[i] > nums[(i+1) % n]
wheren
is the length of the array). - Key observations:
- Exactly one drop: Indicates the array is a rotated version of a sorted array.
- Zero drops: Means the array is completely sorted (i.e., no rotation was performed).
- More than one drop: Means the array is not a rotated sorted array.
Step-by-Step Walkthrough:
-
Initialization:
Set a countercount
to 0. This counter will keep track of the number of drop points. -
Iterate Over the Array:
For each indexi
from0
ton-1
, comparenums[i]
withnums[(i+1) % n]
(using modulo to wrap around the end of the array).- If
nums[i] > nums[(i+1) % n]
, increment thecount
.
- If
-
Determine the Result:
- If
count
is exactly 1, returntrue
. - Otherwise (if
count
is 0 or more than 1), returnfalse
.
- If
-
Edge Case – Single Element:
For an array with a single element, since no rotation can really change the order, it is not considered rotated, so returnfalse
.
Complexity Analysis
-
Time Complexity: O(n)
We make one pass through the array to count the drop points. -
Space Complexity: O(1)
Only a few extra variables are used, independent of the input size.
Code Implementation
Python Code
Java Code
Step-by-Step Example
Let’s walk through the first example: nums = [3, 4, 5, 1, 2]
.
-
Initialization:
count = 0
n = 5
-
Iteration:
- For
i = 0
: Compare3
and4
→3 <= 4
, no drop. - For
i = 1
: Compare4
and5
→4 <= 5
, no drop. - For
i = 2
: Compare5
and1
→5 > 1
, drop detected, incrementcount
to 1. - For
i = 3
: Compare1
and2
→1 <= 2
, no drop. - For
i = 4
: Compare2
and3
(wrap-around using modulo) →2 <= 3
, no drop.
- For
-
Result:
count
is exactly 1, so the function returnstrue
.
Common Pitfalls and Edge Cases
Common Pitfalls:
-
Not using Circular Comparison:
Forgetting to compare the last element with the first can lead to an incorrect count. -
Misinterpreting “Not Rotated”:
If the array is entirely in non-decreasing order (i.e., no drop points), it should returnfalse
even though it is sorted.
Edge Cases:
-
Single Element Array:
An array with one element should returnfalse
since no rotation occurs. -
No Drop Points (Already Sorted):
If the array is sorted and not rotated, the drop count will be 0. -
Multiple Drop Points:
More than one drop point means the array does not meet the criteria.
Here are some related problems that build on similar concepts and techniques:
-
Find Minimum in Rotated Sorted Array (LeetCode 153):
Determine the minimum element in a rotated sorted array. This problem reinforces the idea of identifying the rotation pivot in a sorted sequence. -
Search in Rotated Sorted Array (LeetCode 33):
Given a rotated sorted array and a target value, find the target’s index. This problem combines binary search with handling the rotation aspect. -
Find Minimum in Rotated Sorted Array II (LeetCode 154):
A variation of the first problem where the array may contain duplicates. It challenges you to adjust your approach to deal with non-unique elements. -
Rotate Array (LeetCode 189):
This problem asks you to rotate an array by a given number of steps. It helps you understand how rotation affects the order of elements.
Each of these problems strengthens your understanding of sorted arrays, rotations, and edge cases involved in handling circular array conditions.
GET YOUR FREE
Coding Questions Catalog
