vector<int> findPlacebles(int arr[rows][columns], int row, int col)
{
vector<int> cps = {};
for (int i = 1; i < 10; i++)
{
if (possible(arr,row, col, i)) cps.push_back(i);
}
return cps;
}
vector<int> cps = {};
= {}
и не писать, вектор итак будет по умолчанию инициализировн пустым.cps.push_back(i);