From f80c929e93e19fc95bec6d4e7eb5d539d02d6d5e Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Sun, 23 Feb 2020 09:36:31 +0000 Subject: [PATCH] Fix typo --- huffman-coding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/huffman-coding.py b/huffman-coding.py index 4316a71..6c9052a 100644 --- a/huffman-coding.py +++ b/huffman-coding.py @@ -25,7 +25,7 @@ txt = input("Text: ") info = Counter(txt).most_common() # change the list into ascending order info.reverse() -# create list for character tupl es +# create list for character tuples nodes = [] # create list for node usage frequencies frequencies = []