1. 程式人生 > >LeetCode-557 反轉字串中的單詞

LeetCode-557 反轉字串中的單詞

  • 問題 給定一個字串,你需要反轉字串中每個單詞的字元順序,同時仍保留空格和單詞的初始順序。 示例 1: 輸入: “Let’s take LeetCode contest” 輸出: “s’teL ekat edoCteeL tsetnoc” 注意:在字串中,每個單詞由單個空格分隔,並且字串中不會有任何額外的空格。

  • 解答

class Solution(object):
    def reverseWords(self, str):
        words = str.split()
        result = []
        length = len(words)
        for i in range(length):
            result.append(words[i][::-1])
            if i != length - 1:
                result.append(" ")
        return "".join(result)