LeetCode迴文數(Python)

AlbertWC發表於2018-09-22

LeetCode迴文數(Python)

題目 :判斷一個整數是否是迴文數。迴文數是指正序(從左向右)和倒序(從右向左)讀都是一樣的整數。

示例 1:

輸入: 121
輸出: true
示例 2:

輸入: -121
輸出: false
解釋: 從左向右讀, 為 -121 。 從右向左讀, 為 121- 。因此它不是一個迴文數。
示例 3:

輸入: 10
輸出: false
解釋: 從右向左讀, 為 01 。因此它不是一個迴文數。
進階:

你能不將整數轉為字串來解決這個問題嗎?
class Solution(object):
    def isPalindrome(self,x):
        """
        :type x: int
        :rtype: bool
        """
        a = str(x)
        if a[0] != '-':
            b = a[::-1]
            if a ==  b:
                return true
            else :
                return false
        else:
            return false

後來又看到了別人的一行程式碼。

class Solution(object):
	  def isPalindrome(self,x):
     	  return str(x)==str(x)[::-1]

相關文章