From 19be84cf588944f1a5b6755b0cc0b6764c08323d Mon Sep 17 00:00:00 2001 From: coderanant Date: Fri, 22 May 2020 00:49:03 +0530 Subject: [PATCH] fix bug --- graph/connected_components_with_dsu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/connected_components_with_dsu.cpp b/graph/connected_components_with_dsu.cpp index f06f1beb9..d8d0b011b 100644 --- a/graph/connected_components_with_dsu.cpp +++ b/graph/connected_components_with_dsu.cpp @@ -38,7 +38,7 @@ int no_of_connected_components() { // To find total no of connected components // All critical/corner cases have been taken care of. // Input your required values: (not hardcoded) -int32_t main() { +int main() { std::cin >> N; make_set(); int edges;