Solution Review: Index Array
Let’s take a detailed look at the previous challenge’s solution.
We'll cover the following...
We'll cover the following...
First solution
We’ll use nested loops:
- The outer loop will help us store the value of index
iincurr. - In the inner loop, we have to swap the values to the respective index position in the array. If that position is not available, we have to place
-1there.
Time complexity
The time complexity of the solution is ...