1752. Check if Array Is Sorted and Rotated - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

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

  1. 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.

  2. Circular Check:
    Remember to compare the last element with the first element since the array is a rotated version of a sorted array.

  3. 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 return false.

Approach

Core Idea:

  • Iterate through the array and count the number of times a drop occurs (i.e., nums[i] > nums[(i+1) % n] where n 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:

  1. Initialization:
    Set a counter count to 0. This counter will keep track of the number of drop points.

  2. Iterate Over the Array:
    For each index i from 0 to n-1, compare nums[i] with nums[(i+1) % n] (using modulo to wrap around the end of the array).

    • If nums[i] > nums[(i+1) % n], increment the count.
  3. Determine the Result:

    • If count is exactly 1, return true.
    • Otherwise (if count is 0 or more than 1), return false.
  4. 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 return false.

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

Python3
Python3

. . . .

Java Code

Java
Java

. . . .

Step-by-Step Example

Let’s walk through the first example: nums = [3, 4, 5, 1, 2].

  1. Initialization:

    • count = 0
    • n = 5
  2. Iteration:

    • For i = 0: Compare 3 and 43 <= 4, no drop.
    • For i = 1: Compare 4 and 54 <= 5, no drop.
    • For i = 2: Compare 5 and 15 > 1, drop detected, increment count to 1.
    • For i = 3: Compare 1 and 21 <= 2, no drop.
    • For i = 4: Compare 2 and 3 (wrap-around using modulo) → 2 <= 3, no drop.
  3. Result:

    • count is exactly 1, so the function returns true.

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 return false even though it is sorted.

Edge Cases:

  • Single Element Array:
    An array with one element should return false 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:

  1. 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.

  2. 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.

  3. 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.

  4. 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.

TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Is OOP a design pattern?
Adjusting interview prep approaches after each practice session
Is DSA required for AI?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;