auto fillWithSequence()

in lessons/rename.cpp [83:86]


auto fillWithSequence(Vector<int>& v)
{
    std::iota(v.begin(), v.end(), 1);
}