#include <bits/stdc++.h> #include <algorithm> using namespace std; bool divided(vector<int> nums, int target, int index) { if(index == nums.size() && target == 0) { return true; } if(index >= nums.size() && target != 0) { return ...