From 4325599afe25cf8773d6f9d546cfe64208b9303d Mon Sep 17 00:00:00 2001 From: Guillermo Ramos Date: Sun, 25 Aug 2019 12:13:06 +0200 Subject: [022#1] (WIP) --- 022/ch2.pl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 022/ch2.pl diff --git a/022/ch2.pl b/022/ch2.pl new file mode 100644 index 0000000..6f2cd4a --- /dev/null +++ b/022/ch2.pl @@ -0,0 +1,12 @@ +#!/usr/bin/env perl +# +# Write a script to implement Lempel–Ziv–Welch (LZW) compression algorithm. The +# script should have method to encode/decode algorithm. The wiki page explains +# the compression algorithm very nicely. +# +# (https://en.wikipedia.org/wiki/Lempel%E2%80%93Ziv%E2%80%93Welch). +################################################################################ + +use strict; +use warnings; + -- cgit v1.2.3