public class RunLengthEncoding { public String encode(String input) { throw new UnsupportedOperationException("Method has not been implemented yet."); } public String decode(String input) { throw new UnsupportedOperationException("Method has not been implemented yet."); } }