Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 756 Bytes

File metadata and controls

30 lines (24 loc) · 756 Bytes

557. 反转字符串中的单词 III

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

示例 1:

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

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

题解 (Python)

1. 题解

class Solution:
    def reverseWords(self, s: str) -> str:
        return ' '.join(word[::-1] for word in s.split())

题解 (Ruby)

1. 题解

# @param {String} s
# @return {String}
def reverse_words(s)
    return s.split.map {|word| word.reverse}.join(' ')
end