#include "glossary.hpp" #include using namespace std; /* This is a skeleton implementation of the topcoder method. It prints the terms, and then returns an empty vector. */ vector Glossary::buildGlossary(const vector &items) { size_t i; vector rv; for (i = 0; i < items.size(); i++) cout << items[i] << endl; return rv; }