s0009
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-11-02 22:20:09 +08:00
parent 67d21139eb
commit c214c8dff4
3 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef S0009_PALINDROME_NUMBER
#define S0009_PALINDROME_NUMBER
#include <string>
using namespace std;
class Solution {
public:
bool isPalindrome(int x);
};
#endif