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.
解答: class Solution { public String reverseWords(String s) { String[] array = s.split(" "); StringBuilder output = new StringBuilder();//StringBuilder是字符串变量,效率比String高。String是字符串常量。 int arrlen = array.length; for(int i=0; i<arrlen; i++) array[i] = new StringBuilder(array[i]).reverse().toString(); for(int i=0; i<arrlen; i++) { output.append(array[i]); output.append(" "); } return output.toString().trim(); } }