I'm trying to construct a vector of bitset from an vector of vector of int which contains 0/1 values.
vector < vector <int> > T1;
vector < bitset <1> > B1;
i see that bitset stuctures don't accept push_back() method, so i'm wondring hom can i copy the values in T1 in B1 ?
Thanks