example if i have an input like:
Heeeeeeeeeeeellooooo
the output have to be:
H9e3e2l5o
This is the code that I wrote so far:
public class RLE {
public static String encode(String s) {
if (s == "" || s == null) return "";
StringBuilder sb = new StringBuilder();
int count = 1;
char previous = s.charAt(0);
char current;
for (int i = 1; i < s.length(); i++) {
current = s.charAt(i);
if (current == previous) {
count++;
} else {
if (count == 1) {
sb.append(previous);
} else if (count > 1) {
sb.append(count).append(previous);
count = 1;
}
}
previous = current;
}
return sb.toString();
}
Results in:
'Heeeeeeeeeeeellooooo' -> H12e2l