Skip to content

Commit d79fb04

Browse files
committed
submission_details.cpp
1 parent bfbc722 commit d79fb04

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

submission_details.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Solution {
2+
public:
3+
int removeElement(vector<int>& nums, int val) {
4+
vector<int> result;
5+
for(int n : nums)
6+
{
7+
if (n != val)
8+
result.push_back(n);
9+
}
10+
result.swap(nums);
11+
return nums.size();
12+
}
13+
};

0 commit comments

Comments
 (0)