leetcode/include/s0009_palindrome_number.hpp
2022-11-21 21:15:56 +08:00

15 lines
200 B
C++

#ifndef S0009_PALINDROME_NUMBER_HPP
#define S0009_PALINDROME_NUMBER_HPP
#include <string>
#include <algorithm>
using namespace std;
class Solution {
public:
bool isPalindrome(int x);
};
#endif