代码拉取完成,页面将自动刷新
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();
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。