leetcode/include/s0283_move_zeroes.hpp

14 lines
174 B
C++
Raw Normal View History

2022-11-24 09:21:25 +00:00
#ifndef S0283_MOVE_ZEROES_HPP
#define S0283_MOVE_ZEROES_HPP
#include <vector>
using namespace std;
2022-11-30 10:20:36 +00:00
class S0283 {
2022-11-24 09:21:25 +00:00
public:
void moveZeroes(vector<int>& nums);
};
#endif