#ifndef S0007_REVERSE_INTEGER_HPP #define S0007_REVERSE_INTEGER_HPP #include #include #include class Solution { public: int reverse(int x); }; #endif