代码随想录 Leetcode27. 移除元素

题目:

代码随想录 Leetcode27. 移除元素_第1张图片


代码(首刷看解析  2023年12月28日):

class Solution {
public:
    int removeElement(vector& nums, int val) {
        int n = nums.size();
        int slowIndex = 0;
        for(int fastIndex = 0; fastIndex < n; ++fastIndex){
            if(val != nums[fastIndex]){
                nums[slowIndex++] = nums[fastIndex];
            }
        }
        return slowIndex;
    }
};

你可能感兴趣的:(#,leetcode,---,easy,算法)