From 149f659ddc3ce9c587003d05a01c0d0110205418 Mon Sep 17 00:00:00 2001 From: Mayank Mamgain <56592363+Mayank17M@users.noreply.github.com> Date: Sat, 11 Sep 2021 01:11:38 +0530 Subject: [PATCH] Update graph/travelling_salesman_problem.cpp Co-authored-by: David Leal --- graph/travelling_salesman_problem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/travelling_salesman_problem.cpp b/graph/travelling_salesman_problem.cpp index 20ef6b29a..190ba9ee7 100644 --- a/graph/travelling_salesman_problem.cpp +++ b/graph/travelling_salesman_problem.cpp @@ -108,6 +108,6 @@ int main() { std::vector> cities = { {0, 5, 10, 15}, {5, 0, 20, 30}, {10, 20, 0, 35}, {15, 30, 35, 0}}; int V = cities.size(); - std::cout << graph::TravellingSalesmanProblem(&cities, 0, V); + std::cout << graph::TravellingSalesmanProblem(&cities, 0, V) << std::endl; return 0; }