Discuss / Python / 取巧解法(经过测试)

取巧解法(经过测试)

Topic source

无虑43793

#1 Created at ... [Delete] [Delete and Lock User]

def is_palindrome(n): return str(n)==str(n)[::-1]


  • 1

Reply