编程语言
首页 > 编程语言> > 每日LeetCode - 9. 回文数(C语言和Python 3)

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

作者:互联网

 

 

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)

 

标签:return,Python,pow,isPalindrome,C语言,int,bool,str,LeetCode
来源: https://www.cnblogs.com/vicky2021/p/14730434.html