027. Remove Element
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了027. Remove Element相关的知识,希望对你有一定的参考价值。
1 class Solution { 2 public: 3 int removeElement(vector<int>& nums, int val) { 4 if (nums.size() == 0) return 0; 5 else { 6 int index = 0; 7 for (int i = 0; i < nums.size(); ++i) { 8 if (nums[i] != val) { 9 nums[index++] = nums[i]; 10 } 11 } 12 return index; 13 } 14 } 15 };
以上是关于027. Remove Element的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode OJ_题解(python):027-Remove Element ArrayEasy