-
Notifications
You must be signed in to change notification settings - Fork 25
/
(8 kyu) Sort and Star.java
42 lines (39 loc) · 1.01 KB
/
(8 kyu) Sort and Star.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// #1
// public class SortAndStar {
// public static String twoSort(String[] s) {
// int size = s.length;
// String result = "";
// for(int i = 0; i < size - 1; i++) {
// for (int j = i + 1; j < s.length; j++) {
// if(s[i].compareTo(s[j]) > 0) {
// String temp = s[i];
// s[i] = s[j];
// s[j] = temp;
// }
// }
// }
// String word = s[0];
// int length = word.length() - 1;
// for(int i = 0; i < length; i++) {
// result += word.charAt(i) + "***";
// }
// return result + word.charAt(length);
// }
// }
// #2
// public class SortAndStar {
// public static String twoSort(String[] s) {
// java.util.Arrays.sort(s);
// String word = s[0];
// String[] arr = word.split ("");
// String result = String.join("***", arr);
// return result;
// }
// }
// #3
public class SortAndStar {
public static String twoSort(String[] s) {
java.util.Arrays.sort(s);
return String.join("***",s[0].split(""));
}
}