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

RunLengthEncoding.java 307B

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