Write your own version of the biggies
function using lambdas.
void biggies(std::vector<std::string> &words,
std::vector<std::string>::size_type sz)
{
elimDups(words);
std::stable_sort(words.begin(), words.end(),
[](const std::string &a, const std::string &b)
{ return a.size() < b.size(); });
auto wc = std::find_if(words.begin(), words.end(),
[sz](const std::string &a)
{ return a.size() >= sz; });
auto count = words.end() - wc;
std::cout << count << " " << make_plural(count, "word", "s")
<< " of length " << sz << " or longer" << std::endl;
std::for_each(wc, words.end(), [](const std::string &s)
{ std::cout << s << " "; });
std;:cout << std::endl;
}