151. 翻转字符串里的单词
https://leetcode-cn.com/problems/reverse-words-in-a-string/
解法一:
先将原串按空格切分。然后处理格式后反转
注意开头或末尾的空格,以及连续空格,使用split
函数会切出空串''
:
最后更新于
https://leetcode-cn.com/problems/reverse-words-in-a-string/
先将原串按空格切分。然后处理格式后反转
注意开头或末尾的空格,以及连续空格,使用split
函数会切出空串''
:
最后更新于