Sainnhe Park
5f22966853
All checks were successful
continuous-integration/drone/push Build is passing
15 lines
192 B
C++
15 lines
192 B
C++
#ifndef S0009_PALINDROME_NUMBER
|
|
#define S0009_PALINDROME_NUMBER
|
|
|
|
#include <string>
|
|
#include <algorithm>
|
|
|
|
using namespace std;
|
|
|
|
class Solution {
|
|
public:
|
|
bool isPalindrome(int x);
|
|
};
|
|
|
|
#endif
|