/* Create a function that takes a number as an argument * and returns an array of numbers counting down from this number to zero. */ std::vector<int> countdown(int start) { std::vector<int> countdown; for (int i=start;i>=0;i--){ countdown.push_back(i); } return countdown; }