31. Next Permutation
Last updated
Was this helpful?
Last updated
Was this helpful?
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 and use only constant extra memory.
1 <= nums.length <= 100
0 <= nums[i] <= 100
GeeksforGeeks
YouTube
Input: nums = [1, 2, 3]
Output: [1, 3, 2]