Skip to content

Commit 3ff9e81

Browse files
committed
more golf and format
1 parent c9f7289 commit 3ff9e81

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

library/graphs/bridges_cuts/cuts_callback.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@
1010
//! for (int v : nodes) uf.join(v, nodes[0]);
1111
//! });
1212
//! vector<basic_string<int>> bridge_tree(n);
13-
//! for (auto [u, v] : edges) {
14-
//! if (!uf.sameSet(u,v)) {
13+
//! for (auto [u, v] : edges)
14+
//! if (!uf.sameSet(u, v)) {
1515
//! u = uf.find(u), v = uf.find(v);
1616
//! bridge_tree[u] += v;
1717
//! bridge_tree[v] += u;
1818
//! }
19-
//! }
2019
//! }
2120
//!
2221
//! vector<basic_string<int>> adj(n);

0 commit comments

Comments
 (0)