This documentation is automatically generated by online-judge-tools/verification-helper
#include "linear_algebra_matrix/f2_linear_space.hpp"
$\mathbb{F}_{2}$ 線形空間に関する各種演算.
A
の元で張られる線形空間と B
の元で張られる線形空間の共通部分の基底を一つ求める関数方法.
int n, m;
vector<int> A(n), B(m);
vector<int> C = f2_intersection(A, B);