1 Star 0 Fork 0

徐长贺/Leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
_557.java 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
Fisher Coder 提交于 6年前 . refactor 557
package com.fishercoder.solutions;
/**
* 557. Reverse Words in a String III
*
* 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.
*/
public class _557 {
public static class Solution1 {
public String reverseWords(String s) {
StringBuilder stringBuilder = new StringBuilder();
StringBuilder sbUtils = new StringBuilder();
for (String word : s.split(" ")) {
sbUtils.setLength(0);
sbUtils.append(word);
stringBuilder.append(sbUtils.reverse().toString());
stringBuilder.append(" ");
}
stringBuilder.setLength(stringBuilder.length() - 1);
return stringBuilder.toString();
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/isulong/Leetcode.git
git@gitee.com:isulong/Leetcode.git
isulong
Leetcode
Leetcode
master

搜索帮助