Question: /* Create a function(replaceMid) that takes an ArrayList of ints and continuosly replaces the middle element with each element until all elements have replaced the

/* Create a function(replaceMid) that takes an ArrayList of ints
and continuosly replaces the middle element with each element until all
elements have replaced the middle element
e.g
ints = [1, 2, 9, 7, 0]
[9, 2, 1, 7, 0] //first replacement, 9 with 1
[9, 1, 2, 7, 0]
[9, 1, 2, 7, 0]
[9, 1, 7, 2, 0]
[9, 1, 0, 2, 7]
Please give a simple answer with a regular for loop and use .set() in java
Thanks

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!