31. Next Permutation
Description
Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.
If such an arrangement is not possible, it must rearrange it as the lowest possible order (i.e., sorted in ascending order).
The replacement must be in place and use only constant extra memory.
Constraints
1 <= nums.length <= 1000 <= nums[i] <= 100
Approach

Links
GeeksforGeeks
YouTube
Examples
Input: nums = [1, 2, 3]
Output: [1, 3, 2]
Input: nums = [3, 2, 1]
Output: [1, 2, 3]
Input: nums = [1, 1, 5]
Output: [1, 5, 1]
Input: nums = [1]
Output: [1]
Solutions
Follow up
Last updated
Was this helpful?