fork(1) download
  1. class CountOccurrences {
  2. public static void main(String[] args) throws java.lang.Exception {
  3. printOccurrences("AAAABBCCCDAA");
  4. }
  5.  
  6. public static void printOccurrences(String str) {
  7. int len = str.length();
  8. char[] arr = str.toCharArray();
  9. char contChar = arr[0];
  10. int count = 0;
  11. for (int i = 0; i < arr.length; i++) {
  12. if (contChar == arr[i]) {
  13. count++;
  14. if (i + 1 >= arr.length) {
  15. sb.append(count).append(contChar);
  16. }
  17. } else {
  18. sb.append(count).append(contChar);
  19. contChar = arr[i];
  20. count = 0;
  21. i--;
  22. }
  23. }
  24. System.out.println(sb.toString());
  25. }
  26. }
  27.  
Success #stdin #stdout 0.05s 27696KB
stdin
Standard input is empty
stdout
4A2B3C1D2A