Update data_structures/dsu_union_rank.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Aayush Vyas
2021-09-03 07:34:29 +05:30
committed by GitHub
parent e0d5ce7417
commit 7ca8fce285

View File

@@ -17,9 +17,9 @@
* @see dsu_path_compression.cpp
*/
#include <iostream> /// for IO operations
#include <vector> /// for std::vector
#include <cassert> /// for assert
#include <iostream> /// for IO operations
#include <vector> /// for std::vector
#include <cassert> /// for assert
using std::cout;