zoukankan      html  css  js  c++  java
  • leetcode9. 回文数 🌟

    题目:

      判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。

    示例 1:

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

      输入: -121
      输出: false
      解释: 从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。
    示例 3:

      输入: 10
      输出: false
      解释: 从右向左读, 为 01 。因此它不是一个回文数。
    进阶:

      你能不将整数转为字符串来解决这个问题吗?

    来源:力扣(LeetCode)

    解答:

    class Solution:
        def isPalindrome(self, x: int) -> bool:
            return str(x) == str(x)[::-1]
    View Code
    class Solution:
        def isPalindrome(self, x: int) -> bool:
            if x < 0 or x % 10 == 0 and x != 0:
                return False
    
            reversed_num = 0
            while x > reversed_num:
                reversed_num = x % 10 + reversed_num * 10
                x //= 10
    
            return reversed_num == x or reversed_num // 10 == x
    View Code
    class Solution:
        def isPalindrome(self, x: int) -> bool:
            if x < 0 or x % 10 == 0 and x != 0:
                return False
            
            if x == 0:
                return True
    
            reversed_num = 0
            while x > reversed_num:
                reversed_num = x % 10 + reversed_num * 10
                x //= 10
    
            return (reversed_num == x) ^ (reversed_num // 10 == x)
    View Code
  • 相关阅读:
    词义辨析:事件与事故
    术语-BPM:BPM
    职位:DBA
    职业-软件:软件测试工程师
    职位-软件工程师:软件工程师
    职业-IT:全栈工程师
    术语-技术栈:技术栈
    .NET Core:目录
    .NET Core:.Net Core 百科
    术语-抽象:抽象
  • 原文地址:https://www.cnblogs.com/catyuang/p/11107695.html
Copyright © 2011-2022 走看看