Sfoglia il codice sorgente

Update RunLengthEncoding.java

Logan Stucki 9 anni fa
parent
commit
4ece146516

+ 1
- 4
exercises/run-length-encoding/src/main/java/RunLengthEncoding.java Vedi File

1
-import java.util.regex.Matcher;
2
-import java.util.regex.Pattern;
3
-
4
 public class RunLengthEncoding {
1
 public class RunLengthEncoding {
5
     public String encode(String data) {
2
     public String encode(String data) {
6
         throw new UnsupportedOperationException("Method has not been implemented yet.");
3
         throw new UnsupportedOperationException("Method has not been implemented yet.");
9
     public String decode(String encodedData) {
6
     public String decode(String encodedData) {
10
         throw new UnsupportedOperationException("Method has not been implemented yet.");
7
         throw new UnsupportedOperationException("Method has not been implemented yet.");
11
     }
8
     }
12
-}
9
+}