Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

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