So you’ve completed your coding bootcamp, but now it’s onto the next challenge: the job search. Job searching at this point, for me at least, feels like a full time job in itself. Here are a few tips I’ve noticed along the way:
Continue to code!
I cannot emphasize this…
Given two arrays of equal length, nums and index, return a new array with the elements of nums left to right positioned at the index of index left to right. Repeat this until there are no elements left in either array.
Example input: nums = [0,1,2,3,4]; index = [0,1,2,2,1]. …