leetcode/include/s0283_move_zeroes.hpp

14 lines
177 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;
class Solution {
public:
void moveZeroes(vector<int>& nums);
};
#endif