mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-04 19:20:17 +08:00
Remove unused global variable from graph/kruskal.
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user