From 31f87414b222d0dc7450df1b60542ccf51ca10a5 Mon Sep 17 00:00:00 2001 From: Ravinder Khangura <38717332+ravinderkhangura@users.noreply.github.com> Date: Thu, 21 Oct 2021 20:58:08 -0400 Subject: [PATCH] Update huffman_coding.cpp imports --- greedy_problems/huffman_coding.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}