27. 移除元素 leetcode
2018-11-02 本文已影响3人
出来遛狗了
image.png
class Solution {
func removeElement(_ nums: inout [Int], _ val: Int) -> Int {
var i = 0;
while i < nums.count {
if nums[i] == val{
nums.remove(at: i)
}else{
i += 1
}
}
return nums.count;
}
}