formatting source-code for a887dc59ed8e790d479773e0ce5e24c6db110afb

This commit is contained in:
github-actions 2020-06-23 18:43:35 +00:00 committed by Ayaan Khan
parent 866c23e19e
commit 2802dca895

View File

@ -28,8 +28,8 @@ using std::vector;
vector<int> root, rank; vector<int> root, rank;
/** /**
* *
* Function to create a set * Function to create a set
* @param n number of element * @param n number of element
* *
@ -57,7 +57,7 @@ int Find(int x) {
return root[x] = Find(root[x]); return root[x] = Find(root[x]);
} }
/** /**
* *
* A utility function to check if x and y are from same set or not * A utility function to check if x and y are from same set or not
* @param x element of some set * @param x element of some set