commit b7c5af167bad9e69d666a307bb46991e8d59bd74
parent 66c90810805c4579c7e829944244b7604a5535b4
Author: William Lindholm <a22willi@student.his.se>
Date: Wed, 29 Nov 2023 13:58:00 +0100
Added description.
Diffstat:
1 file changed, 8 insertions(+), 13 deletions(-)
diff --git a/Problem3/Problem3.cpp b/Problem3/Problem3.cpp
@@ -1,20 +1,14 @@
-// Problem3.cpp : This file contains the 'main' function. Program execution begins and ends there.
+// Problem 1: Huffman Coding
+// Description: Implement a Huffman coding algorithm.
+// Course: IT405G - Datastructures and Algorithms
+// Authors: William Lindholm, Lili Tran, Victor Adamson
+// Date: 29-11-2023
//
+
#include <iostream>
int main()
{
std::cout << "Hello World!\n";
-}
-
-// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
-// Debug program: F5 or Debug > Start Debugging menu
-
-// Tips for Getting Started:
-// 1. Use the Solution Explorer window to add/manage files
-// 2. Use the Team Explorer window to connect to source control
-// 3. Use the Output window to see build output and other messages
-// 4. Use the Error List window to view errors
-// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
-// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
+}
+\ No newline at end of file