diff --git a/Documentation/Short_Algorithms_Project_Report.doc b/Documentation/Short_Algorithms_Project_Report.doc new file mode 100644 index 0000000..7a5f1f0 Binary files /dev/null and b/Documentation/Short_Algorithms_Project_Report.doc differ diff --git a/Documentation/Short_Algorithms_Project_Report.pdf b/Documentation/Short_Algorithms_Project_Report.pdf new file mode 100644 index 0000000..4aeaa62 Binary files /dev/null and b/Documentation/Short_Algorithms_Project_Report.pdf differ diff --git a/__pycache__/sorting_algorithms.cpython-39.pyc b/__pycache__/sorting_algorithms.cpython-39.pyc new file mode 100644 index 0000000..b86cd9e Binary files /dev/null and b/__pycache__/sorting_algorithms.cpython-39.pyc differ diff --git a/main.py b/main.py index 9668fa1..1933ae9 100644 --- a/main.py +++ b/main.py @@ -4,6 +4,7 @@ from sorting_algorithms import * import random +# This code creates a chart using the Tkinter library. First, root creation, which is a Tk creation. This object represents a window that will serve as the main window. root = Tk() root.title('Sorting Algorithms Visualization') root.geometry('900x600')