diff --git a/greedy_problems/huffman_coding.cpp b/greedy_problems/huffman_coding.cpp index cce081c..6c6fe5c 100644 --- a/greedy_problems/huffman_coding.cpp +++ b/greedy_problems/huffman_coding.cpp @@ -10,7 +10,7 @@ * with smaller bit strings; and less frequently occurring letters such as q and x with longer bit strings. * More details: https://www.cs.duke.edu/csed/poop/huff/info/ */ - +/* imports*/ #include #include #include @@ -97,4 +97,4 @@ int main() generateHuffmanCode(data, frequencies); return 0; -} \ No newline at end of file +}