mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
16 lines
349 B
Java
16 lines
349 B
Java
class Solution {
|
|
private static <T> void reverse(T[] arr) {
|
|
for (int l = 0, r = arr.length - 1; l < r; ++l, --r) {
|
|
var tmp = arr[l];
|
|
arr[l] = arr[r];
|
|
arr[r] = tmp;
|
|
}
|
|
}
|
|
|
|
public String reverseWords(String s) {
|
|
String[] words = s.strip().split("\\s+");
|
|
reverse(words);
|
|
|
|
return String.join(" ", words);
|
|
}
|
|
}
|