Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 1.18 KB

557-reverse-words-in-a-string-iii.md

File metadata and controls

40 lines (25 loc) · 1.18 KB

557. Reverse Words in a String III - 反转字符串中的单词 III

给定一个字符串,你需要反转字符串中每个单词的字符顺序,同时仍保留空格和单词的初始顺序。

示例 1:

输入: "Let's take LeetCode contest"
输出: "s'teL ekat edoCteeL tsetnoc" 

注意:在字符串中,每个单词由单个空格分隔,并且字符串中不会有任何额外的空格。


题目标签:String

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
python3 56 ms N/A
class Solution:
    def reverseWords(self, s):
        """
        :type s: str
        :rtype: str
        """
        return ' '.join([w[::-1] for w in s.split()])