Given a
vector
of integers, return a
vector<vector<int> >
of size 2. The first one holds the elements with even positions, and the second one holds the elements with odd positions in the original
vector
.