leetcode/include/s0283_move_zeroes.hpp
2022-11-24 17:21:25 +08:00

14 lines
177 B
C++

#ifndef S0283_MOVE_ZEROES_HPP
#define S0283_MOVE_ZEROES_HPP
#include <vector>
using namespace std;
class Solution {
public:
void moveZeroes(vector<int>& nums);
};
#endif