方法1:///简单粗暴,看看就行
class Solution {
public boolean isPalindrome(int x) {
String reversedStr = (new
2022-02-28