From de47f7300dc2da8447b394116b3cbfab952af335 Mon Sep 17 00:00:00 2001 From: James Schloss Date: Sat, 23 Oct 2021 17:17:51 +0200 Subject: [PATCH] removing println statements --- contents/huffman_encoding/code/julia/huffman.jl | 3 --- 1 file changed, 3 deletions(-) diff --git a/contents/huffman_encoding/code/julia/huffman.jl b/contents/huffman_encoding/code/julia/huffman.jl index 3029e9374..e01fd1dfd 100644 --- a/contents/huffman_encoding/code/julia/huffman.jl +++ b/contents/huffman_encoding/code/julia/huffman.jl @@ -111,11 +111,8 @@ end function two_pass_huffman(phrase::String) huffman_tree = create_tree(phrase) codebook = create_codebook(huffman_tree) - println(codebook) bitstring = encode(codebook, phrase) final_string = decode(huffman_tree, bitstring) - println(bitstring) - println(final_string) return final_string end