前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Leetcode Palindrome Number

Leetcode Palindrome Number

作者头像
发布2018-09-04 11:37:32
3740
发布2018-09-04 11:37:32
举报
文章被收录于专栏:WD学习记录WD学习记录

题目:Palindrome Number

Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.

Example 1:

代码语言:javascript
复制
Input: 121
Output: true

Example 2:

代码语言:javascript
复制
Input: -121
Output: false
Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome.

Example 3:

代码语言:javascript
复制
Input: 10
Output: false
Explanation: Reads 01 from right to left. Therefore it is not a palindrome.

Follow up:

Coud you solve it without converting the integer to a string?

解答:

自己的答案:

代码语言:javascript
复制
class Solution:
    def isPalindrome(self, x):
        """
        :type x: int
        :rtype: bool
        """
        arr = []
        for s in str(x):
            arr.append(s)
        if len(arr)==0 or len(arr)==1:
            return True
        
        for i in range(len(arr)//2):
            if arr[i] !=arr[-i-1]:
                return False
        return True

参考最快的解决方法:Palindrome Number

代码语言:javascript
复制
class Solution:
    def isPalindrome(self, x):
        """
        :type x: int
        :rtype: bool
        """
        x_list = [i for i in str(x)]
        if x_list == x_list[::-1]:
            return (True)
        else:
            return (False)
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018年08月14日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目:Palindrome Number
  • 解答:
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档