Skip to content

Commit 5d6e3a1

Browse files
committed
add KACTL macro
1 parent 4c75967 commit 5d6e3a1

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

library/math/matrix_related/row_reduce.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
//! affected by row operations
99
//! @time O(n * m * min(cols, n))
1010
//! @space O(1)
11-
pair<int, int> row_reduce(vector<vector<int>>& mat,
12-
int cols) {
11+
pii row_reduce(vector<vector<int>>& mat, int cols) {
1312
int n = sz(mat), m = sz(mat[0]), rank = 0;
1413
int det = 1;
1514
for (int col = 0; col < cols && rank < n; col++) {

0 commit comments

Comments
 (0)