lots of exercises in java... from https://github.com/exercism/java

RunLengthEncoding.java 313B

12345678910
  1. public class RunLengthEncoding {
  2. public String encode(String data) {
  3. throw new UnsupportedOperationException("Method has not been implemented yet.");
  4. }
  5. public String decode(String encodedData) {
  6. throw new UnsupportedOperationException("Method has not been implemented yet.");
  7. }
  8. }