Leetcode7题 回文数字
public class Solution {
public bool IsPalindrome(int x) {
if(x<0)
{
return false;
}
List<int> list=new List<int>();
while(x!=0)
{
list.Add(x%10);
x/=10;
}
for(int i=0;i<list.Count;i++)
{
if(list[i]!=list[list.Count-i-1])
{
return false;
}
}
return true;
}
}