Question: Implement a function create_permutation(n) that creates and returns a list containing a random permutation of the numbers: 0, 1, 2, , (n-1). For example, one
Implement a function create_permutation(n) that creates and returns a list containing a random permutation of the numbers: 0, 1, 2, , (n-1). For example, one call to create_permutation(6) could return the list: [3, 2, 5, 4, 0, 1], another call to create_permutation(6) could return the list:[2, 0, 3, 1, 5, 4]. ***** Must be without using itertools****** Python
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
