Skip to content

Commit c6257fa

Browse files
committed
removing println statements
1 parent 62b94f1 commit c6257fa

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

contents/huffman_encoding/code/julia/huffman.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,8 @@ end
111111
function two_pass_huffman(phrase::String)
112112
huffman_tree = create_tree(phrase)
113113
codebook = create_codebook(huffman_tree)
114-
println(codebook)
115114
bitstring = encode(codebook, phrase)
116115
final_string = decode(huffman_tree, bitstring)
117-
println(bitstring)
118-
println(final_string)
119116
return final_string
120117
end
121118

0 commit comments

Comments
 (0)