class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param nums int整型vector
* @param val int整型
* @return int整型
*/
int remove_cows(vector<int>& nums, int val) {
// write code here
int ans = 0;
for(auto num:nums)
{
if(num!=val)
++ans;
}
return ans;
}
};

京公网安备 11010502036488号