14 lines
171 B
C++
14 lines
171 B
C++
|
#ifndef S0009_PALINDROME_NUMBER
|
||
|
#define S0009_PALINDROME_NUMBER
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class Solution {
|
||
|
public:
|
||
|
bool isPalindrome(int x);
|
||
|
};
|
||
|
|
||
|
#endif
|