Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 289 Bytes

permutations.md

File metadata and controls

16 lines (14 loc) · 289 Bytes

Given a collection of distinct integers, return all possible permutations.

Example:

Input: [1,2,3]
Output:
[
  [1,2,3],
  [1,3,2],
  [2,1,3],
  [2,3,1],
  [3,1,2],
  [3,2,1]
]