//water
class Solution {
public:
int removeElement(vector<int>& nums, int val) {
for(vector<int>::iterator it=nums.begin();it!=nums.end();)
{
if(*it == val)nums.erase(it);
else it++;
}
return nums.size();
}
};
相关文章
- 03-24Leetcode027. Remove Element
- 03-24LaTex Remove Left Margin 去除左边空间
- 03-24【vue】vue使用Element组件时v-for循环里的表单项验证方法
- 03-24[LeetCode] 162. Find Peak Element_Medium tag: Binary Search
- 03-24Clear Element Text——主要用来清空文本框中的内容
- 03-24[leetcode]Remove Duplicates from Sorted Array II @ Python
- 03-24LeetCode::Remove Duplicates from Sorted List II [具体分析]
- 03-24[LeetCode] Remove Duplicates from Sorted List II
- 03-24element form 对某一个input或者某几个input验证
- 03-24element表单验证如何清除校验提示语