You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// function return an array of all integers between the input parameters
int main(int num1, int num2) {
vector<int> list;
for (int i = num1; i <= num2; i++)
{
list.push_back(i);
}
return list;
}
/*Complete the function that takes two integers (a, b, where a < b) and return an array of all integers between the input parameters, including them.*/