Leetcode刷题记录[python]——344 Reverse String

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode刷题记录[python]——344 Reverse String相关的知识,希望对你有一定的参考价值。

一、前言

  不是计算机专业出身,却有一颗程序猿的心。

  昨日开始leetcode第一次刷题,选择了菜鸟方式,从AC率最高且难度为Easy的题开始,不管题是简单还是难,都想做个记录,既是方便以后回顾,又是以此作为一个激励,督促自己每天都能有所进步。

 

二、题344 Reverse String

      Write a function that takes a string as input and returns the string reversed.

class Solution(object):
    def reverseString(self, s):
        """
        :type s: str
        :rtype: str
        """
        return s[::-1]

 

以上是关于Leetcode刷题记录[python]——344 Reverse String的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode刷题344-简单-翻转字符串

LeetCode刷题344-简单-翻转字符串

Leetcode刷题100天—344. 反转字符串(双指针)—day20

Leetcode刷题100天—344. 反转字符串(双指针)—day20

LeetCode刷题记录(python3)

Leetcode刷题记录[python]——283 Move Zeroes