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