题目1:
解题方法
直接用reverse()即可
代码:文章来源:https://www.toymoban.com/news/detail-799081.html
class Solution(object):
def reverseString(self, s):
"""
:type s: List[str]
:rtype: None Do not return anything, modify s in-place instead.
"""
return s.reverse()
如果不用考虑改变原列表的话,还有一个方法: s[ : :-1] (字符串也可用此方式进行反转)
题目2:9. 回文数
给你一个整数 x ,如果 x 是一个回文整数,返回 true ;否则,返回 false 。
回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。
例如,121 是回文,而 123 不是。
解题方法:
1.数字转成列表 list(str())
2.对列表进行反转
3.反转后的列表与原列表进行比较,相等则说明是回文数,返回True,否则返回False()
代码:
class Solution(object):
def isPalindrome(self, x):
"""
:type x: int
:rtype: bool
"""
x = list(str(x))
#列表反转
x1 = x[::-1]
if x == x1:
return True
return False
ps:这道题对于列表的反转就不要用reverse()啦,因为是要原列表与反转后的列表进行比较,用reverse()的话原列表就会变成反转后的数据文章来源地址https://www.toymoban.com/news/detail-799081.html
到了这里,关于leetcode-344. 反转字符串、9. 回文数的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!