Given a string, you need to reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
Example 1:
Input: "Let's take LeetCode contest"
Output: "s'teL ekat edoCteeL tsetnoc"
Note: In the string, each word is separated by single space and there will not be any extra space in the string.
方法一:58ms
class Solution(object):
def reverseWords(self, s):
"""
:type s: str
:rtype: str
"""
l = s.split()
k = []
for i in l:
k.append(i[::-1])
t = ' '.join(k)
return t
方法二:58ms
class Solution(object):
def reverseWords(self, s):
"""
:type s: str
:rtype: str
"""
return ' '.join([substr[::-1] for substr in s.split(' ')])
这样一句话返回真的好吗,可读性不够好啊

本文介绍了一种算法,该算法可以在保持原有空格和单词顺序的情况下,实现字符串中每个单词内部字符的反转。提供了两种实现方法,均能在58毫秒内完成任务。

1605

被折叠的 条评论
为什么被折叠?



