首页 > 编程语言 > 详细

每日LeetCode - 9. 回文数(C语言和Python 3)

时间:2021-05-04 23:41:49      阅读:34      评论:0      收藏:0      [点我收藏+]

技术分享图片

 

 

C语言

结合“7. 整数倒转”求出结果。

#include "math.h"

bool isPalindrome(int x){
    int max = pow(2, 31) - 1;
    int min = pow(2, 31) * -1;
    int y = 0;
    int n = x;

    if(x<0){
        return false;
    }
    else{
        while (n!=0){
            if(y>max/10 || y<min/10)
                return false;
            y = y*10+n%10;
            n = n/10;
        }
        return x == y;
    }
}

Python 3

将x变为字符串逐字符进行首尾比较。

class Solution:
    def isPalindrome(self, x: int) -> bool:
        if x < 0:
            return False
        else:
            x = str(x)
            for i in range(round(len(x)/2)):
                if x[i]!=x[len(x)-i-1]:
                    return False
            return True

利用python的语法,快速编写程序。

class Solution:
    def isPalindrome(self, x: int) -> bool:
        return x>=0 and str(x)[::-1]==str(x)

 

每日LeetCode - 9. 回文数(C语言和Python 3)

原文:https://www.cnblogs.com/vicky2021/p/14730434.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!