浏览代码

Merge branch 'run-length-encoding' of https://github.com/Smarticles101/xjava into run-length-encoding

Smarticles101 9 年前
父节点
当前提交
052dbef1c1
共有 1 个文件被更改,包括 1 次插入4 次删除
  1. 1
    4
      exercises/run-length-encoding/src/main/java/RunLengthEncoding.java

+ 1
- 4
exercises/run-length-encoding/src/main/java/RunLengthEncoding.java 查看文件

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
+}