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