557. 反转字符串中的单词 III
为保证权益,题目请参考 557. 反转字符串中的单词 III(From LeetCode).
解决方案1
CPP
C++
#include <iostream>
#include <string>
using namespace std;
class Solution
{
public:
string reverseWords(string s)
{
string.spl
}
};
int main()
{
return 0;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Python
python
class Solution:
def reverseWords(self, s: str) -> str:
return "".join([st[::-1] for st in s.split(" ")])
1
2
3
4
5
2
3
4
5