leetcode 27 Remove Element
Posted 王坤1993
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 27 Remove Element相关的知识,希望对你有一定的参考价值。
class Solution { public: int removeElement(vector<int>& nums, int val) { int res = 0; for (int i = 0; i < nums.size(); ++i) { if (nums[i] != val) nums[res++] = nums[i]; } return res; } };
以上是关于leetcode 27 Remove Element的主要内容,如果未能解决你的问题,请参考以下文章