Class Solution
-
- All Implemented Interfaces:
public final class Solution2855 - Minimum Right Shifts to Sort the Array.
Easy
You are given a 0-indexed array
numsof lengthncontaining distinct positive integers. Return the minimum number of right shifts required to sortnumsand-1if this is not possible.A right shift is defined as shifting the element at index
ito index(i + 1) % n, for all indices.Example 1:
Input: nums = 3,4,5,1,2
Output: 2
Explanation:
After the first right shift, nums = 2,3,4,5,1.
After the second right shift, nums = 1,2,3,4,5.
Now nums is sorted; therefore the answer is 2.
Example 2:
Input: nums = 1,3,5
Output: 0
Explanation: nums is already sorted therefore, the answer is 0.
Example 3:
Input: nums = 2,1,4
Output: -1
Explanation: It's impossible to sort the array using right shifts.
Constraints:
1 <= nums.length <= 1001 <= nums[i] <= 100numscontains distinct integers.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntegerminimumRightShifts(List<Integer> nums)-
-
Method Detail
-
minimumRightShifts
final Integer minimumRightShifts(List<Integer> nums)
-
-
-
-