#######solution1######## def isPalindrome(x):# if x<0:# return False# else:# l=str(x)# newl=l[::-1]# i=0# while l[i] is newl[i]:# if i
第1种和第2种方法都是转换成string,第3种方法效率最高
本文共 280 字,大约阅读时间需要 1 分钟。
#######solution1######## def isPalindrome(x):# if x<0:# return False# else:# l=str(x)# newl=l[::-1]# i=0# while l[i] is newl[i]:# if i
第1种和第2种方法都是转换成string,第3种方法效率最高
转载于:https://www.cnblogs.com/graybird/p/10730807.html