leetcode/include/s0027_remove_element.hpp
2022-11-21 21:15:56 +08:00

14 lines
194 B
C++

#ifndef S0027_REMOVE_ELEMENT_HPP
#define S0027_REMOVE_ELEMENT_HPP
#include <vector>
using namespace std;
class Solution {
public:
int removeElement(vector<int>& nums, int val);
};
#endif