Write a method called removeFront that takes an integer n as a parameter and that removes the first n values from a list of integers. For example, if a variable called list stores [8, 17, 9, 24, 42, 3, 8] and a call of list.removeFront(4); is made, the list’s contents should become [42, 3, 8]. You may assume that the parameter value passed is between 0 and the size of the list inclusive.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.