31. Next Permutation
LeetCode 31. Next Permutation****
Description
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]Tags
Solution
Complexity
Code
Reference
Last updated