#ifndef S0009_PALINDROME_NUMBER_HPP #define S0009_PALINDROME_NUMBER_HPP #include #include using namespace std; class S0009 { public: bool isPalindrome(int x); }; #endif