Question: Write a function called rearrange that consumes alon, a list of n natural numbers between 0 and n-1, and produces None. The function mutates alon

Write a function called rearrange that consumes alon, a list of n natural numbers between 0 and n-1, and produces None. The function mutates alon such that each value in alon is placed at its corresponding position For example, L1-[6, 5, 0, 3, 4, 1, 2] L2[2, 0, 3, 4, 5, 6, 1] . rearrange (L1) produces None, but mutates L1 such that L1 becomes [0, 1, 2, 3, 4, 5, 6] rearrange (L2) but mutates L2 such that L2 becomes [0, 1, 2, 3, 4, 5, 6] . None Do not use any built-in sort or reverse functions
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
