We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Simplest Way To Do It !!
string canConstruct(vector a) {
// Return "Yes" or "No" denoting whether you can construct the required number.
int n = a.size();
long sum = 0;
Constructing a Number
You are viewing a single comment's thread. Return to all comments →
Simplest Way To Do It !! string canConstruct(vector a) { // Return "Yes" or "No" denoting whether you can construct the required number. int n = a.size(); long sum = 0;
}