From 9a47ae725c2cfbbbd09f5ed14562b35cb57a69d4 Mon Sep 17 00:00:00 2001 From: shivamberi Date: Mon, 30 Oct 2017 16:11:00 +0530 Subject: [PATCH] Added a better header file --- greedy/dijkstra_shortest_path/dijkstra-shortest-path.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/greedy/dijkstra_shortest_path/dijkstra-shortest-path.cpp b/greedy/dijkstra_shortest_path/dijkstra-shortest-path.cpp index 131b2220ee..ac595942f1 100644 --- a/greedy/dijkstra_shortest_path/dijkstra-shortest-path.cpp +++ b/greedy/dijkstra_shortest_path/dijkstra-shortest-path.cpp @@ -17,12 +17,7 @@ Sample Output 150 unreachable */ -#include -#include -#include -#include -#include -#include +#include using namespace std; typedef pair ii;