forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_1370.java
30 lines (29 loc) · 983 Bytes
/
_1370.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
package com.fishercoder.solutions;
public class _1370 {
public static class Solution1 {
public String sortString(String s) {
int[] count = new int[26];
for (char c : s.toCharArray()) {
count[c - 'a']++;
}
StringBuilder sb = new StringBuilder();
while (sb.length() < s.length()) {
for (int i = 0; i < count.length; i++) {
if (count[i] != 0) {
char character = (char) (i + 'a');
sb.append(character);
count[i]--;
}
}
for (int i = 25; i >= 0; i--) {
if (count[i] > 0) {
char character = (char) (i + 'a');
sb.append(character);
count[i]--;
}
}
}
return sb.toString();
}
}
}