Skip to content

Commit 3fec295

Browse files
authored
Update Dijkstras_MinHeap.cpp
Uncommenting main function in Dijkstras_MinHeap.cpp
1 parent dd74430 commit 3fec295

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/cpp/Dijkstras_MinHeap.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void dijkstra(const unordered_map<int, unordered_map<int, int>>& graph, int star
8383
}
8484

8585
// Uncomment the following main function to run a sample test case
86-
/*
86+
8787
int main() {
8888
// Example graph represented as an adjacency list
8989
unordered_map<int, unordered_map<int, int>> graph = {
@@ -98,4 +98,3 @@ int main() {
9898

9999
return 0;
100100
}
101-
*/

0 commit comments

Comments
 (0)