LeetCode迴文數(Python)
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]
相關文章
- LeetCode9[迴文數]LeetCode
- LeetCode-N9-迴文數LeetCode
- Leetcode每日打卡20201001-----迴文數LeetCode
- leetcode的第9題:迴文數LeetCode
- LeetCode每日一題:迴文數(No.9)LeetCode每日一題
- 每日一道 LeetCode (3):迴文數LeetCode
- leetcode第九題Palindrome Number 驗證迴文數字LeetCode
- 迴文數
- LeetCode - 409 - 最長迴文串LeetCode
- 20241106,LeetCode 每日一題,用 Go 實現整數迴文數判斷LeetCode每日一題Go
- LeetCode125. 驗證迴文串LeetCode
- LeetCode 234. 迴文連結串列LeetCode
- Python:判斷一個正整數是否為迴文數Python
- LeetCode 5.最長迴文子串LeetCode
- leetcode 234.迴文連結串列 JavaLeetCodeJava
- LeetCode516. 最長迴文子序列LeetCode
- 9.迴文數
- 迴文數問題
- python如何判斷迴文Python
- LeetCode-5. 最長迴文子串(Manacher)LeetCode
- Leetcode[字串] 5. 最長迴文子串LeetCode字串
- 小白刷題——迴文數
- python統計英文文字中的迴文單詞數Python
- python LeetCode 兩數相除PythonLeetCode
- Leetcode:1616. 分割兩個字串得到迴文串LeetCode字串
- LeetCode題集-5 - 最長迴文子串(一)LeetCode
- ACM之判斷迴文數ACM
- 力扣題之迴文數力扣
- Leetcode5: Longest Palindromic Substring(最長迴文子串)LeetCode
- 每日一道 LeetCode (48):最長迴文子串LeetCode
- 線性dp:LeetCode516 .最長迴文子序列LeetCode
- LeetCode反轉整數(Python)LeetCodePython
- LeetCode數學問題(Python)LeetCodePython
- Python零基礎學習程式碼實踐——列印迴文數Python
- [原創][luogu]P1217 迴文質數 真·生成迴文的方法
- C語言:迴文數計算C語言
- 每天一道leetcode234-迴文連結串列LeetCode
- Leetcode 344:驗證迴文串(最詳細解決方案!!!)LeetCode