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