Update data_structures/dsu_path_compression.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Aayush Vyas
2021-10-08 12:13:49 +05:30
committed by GitHub
parent 3919b5fca7
commit 8fc814a57f

View File

@@ -206,8 +206,8 @@ int main() {
uint64_t n = 10; ///< number of items
dsu d(n + 1); ///< object of class disjoint sets
test1(); //< test case# 1
test2(); //< test case# 2
test1(); // run 1st test case
test2(); // run 2nd test case
return 0;
}