// compute.cpp #include "parameters.h" vector count(const string&); vector< vector > compute(const vector& given) { vector< vector > computed; int n = given.size(); for(int i=0; i counts = count(t); computed.push_back(counts); } return computed; }