leet-code/src/main/java/leetcode/editor/cn/ReverseWordsInAStringIii.md

18 lines
697 B
Markdown
Raw Normal View History

2021-07-09 14:39:45 +08:00
<p>给定一个字符串,你需要反转字符串中每个单词的字符顺序,同时仍保留空格和单词的初始顺序。</p>
<p>&nbsp;</p>
<p><strong>示例:</strong></p>
<pre><strong>输入:</strong>&quot;Let&#39;s take LeetCode contest&quot;
<strong>输出:</strong>&quot;s&#39;teL ekat edoCteeL tsetnoc&quot;
</pre>
<p>&nbsp;</p>
<p><strong><strong><strong><strong>提示:</strong></strong></strong></strong></p>
<ul>
<li>在字符串中,每个单词由单个空格分隔,并且字符串中不会有任何额外的空格。</li>
</ul>
<div><div>Related Topics</div><div><li>双指针</li><li>字符串</li></div></div>\n<div><li>👍 300</li><li>👎 0</li></div>