From 063afb1650160c8973de51603be0acca53b39e5d Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 25 Jun 2020 18:17:41 +0200 Subject: Initial commit: Rewrite in Rust --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..74ef205 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# huffman + +Implementation of [Huffman coding](https://en.wikipedia.org/wiki/Huffman_coding?oldformat=true) made for educational purposes. + +## Usage + +`python3 draft.py [file_name]` to run the python draft. + +`cargo run [file_name]` for the real thing. -- cgit