Remove unused global variable from graph/kruskal.

This commit is contained in:
Filip Hlásek
2020-08-03 02:07:59 -07:00
parent 891e0dd5ca
commit d2b7015901

View File

@@ -7,7 +7,7 @@
const int mx = 1e6 + 5;
typedef int64_t ll;
std::array<ll, mx> parent, arr;
std::array<ll, mx> parent;
ll node, edge;
std::vector<std::pair<ll, std::pair<ll, ll>>> v;
void initial() {