]> Skullheadx's Git Forge - The-Traveling-Salesman-Problem.git/commitdiff
Create README.md
authorSkullheadx <94652084+Skullheadx@users.noreply.github.com>
Tue, 27 Dec 2022 04:19:24 +0000 (23:19 -0500)
committerGitHub <noreply@github.com>
Tue, 27 Dec 2022 04:19:24 +0000 (23:19 -0500)
README.md [new file with mode: 0644]

diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..357d917
--- /dev/null
+++ b/README.md
@@ -0,0 +1,15 @@
+# The-Traveling-Salesman-Problem
+
+My solutions to the Traveling Salesman Problem (TSP) inspired by video presented by Reducible on Youtube. 
+(https://youtu.be/GiDsjIBOVoA)
+
+--------------------------------------------------------------------------------------------------------------
+TSP Problem Definition
+If a salesman starts at a town and wants to travel to every other town only once, what is the shortest path he should take?
+
+Assuming that:
+1. Each town is connected by a direct edge
+2. The distance between town A and town B is the same as the distance between town B and town A
+3. The direct path to a town is always the shortest, i.e. going directly from town A to town C is faster than going from town A to town B and then town C
+
+--------------------------------------------------------------------------------------------------------------