14 lines
177 B
C++
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
|