Skip to content

Latest commit

 

History

History
10 lines (5 loc) · 295 Bytes

File metadata and controls

10 lines (5 loc) · 295 Bytes

Permutations

Goal: Use Python to implement Permutations

Overview

Write a function that takes in an array of unique integers and returns an array of all permutations of those integers in no particular order. If the input is empty, the function should return an empty array.

See Also