Remove Element from Array
Given an array and a value, remove all the instances of that value in the array. Also return the number of elements left in the array after the operation. It does not matter what is left beyond the expected length.
Example: If array A is
[4, 1, 1, 2, 1, 3]
and value elem is1
, then new length is3
, and A is now[4, 2, 3]
Try to do it in less than linear additional space complexity.
Last updated