Remove Element 题解
Last updated
Was this helpful?
Last updated
Was this helpful?
题目来源:
> Given an array and a value, remove all instances of that value in place and return the new length. The order of elements can be changed. It doesn't matter what you leave beyond the new length.
解题思路:
直接两个index, 跟目标不同就复制下, 不然只移动后面一个index. 跟这道题类似.