Skip to content

Instantly share code, notes, and snippets.

@codeperfectplus
Created September 10, 2023 12:08
Show Gist options
  • Select an option

  • Save codeperfectplus/8a25c752fd2c4161794db10649a544e7 to your computer and use it in GitHub Desktop.

Select an option

Save codeperfectplus/8a25c752fd2c4161794db10649a544e7 to your computer and use it in GitHub Desktop.
// Complete the aVeryBigSum function below.
long aVeryBigSum(vector<long> ar) {
long long int total = accumulate(ar.begin(), ar.end(), 0ll);
return total;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment