Created
September 10, 2023 12:08
-
-
Save codeperfectplus/8a25c752fd2c4161794db10649a544e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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