mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
12 lines
242 B
Java
12 lines
242 B
Java
|
|
public class compressclient {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
HEncoder h= new HEncoder("aaaabbbcccccccccccdddd");
|
|
System.out.println(h.compress("aabccd"));
|
|
System.out.println(h.decompress("101011000111"));
|
|
}
|
|
|
|
}
|