Calculate and print the sum of the elements in an array, keeping in mind that some of those integers may be quite large.
Function Description
Complete the aVeryBigSum function in the editor below. It must return the sum of all array elements.
aVeryBigSum has the following parameter(s):
- ar: an array of integers .
Input Format The first line of the input consists of an integer n.
The next line contains n space-separated integers contained in the array.
Output Format
Print the integer sum of the elements in the array.
Constraints
1 <= n <= 10
0 <=ar[i] <= 102
Sample Input
5
1000000001 1000000002 1000000003 1000000004 1000000005
Output
5000000015
Note:
The range of the 32-bit integer is (-231) to (231 - 1) or [-2147483648, 2147483647]
When we add several integer values, the resulting sum might exceed the above range. You might need to use long long int in C/C++ or long data type in Java to store such sums.
Hackerrank Solution
function aVeryBigSum(ar) { let total = 0; ar.filter((value, index) => { total += value; }); return total; }
You might also like:
Functions in javascript25-05-2018 functions javascript es5 es6 arrow functions named functions Closures Nested Functions Callbacks Arrow functions. |
Time Sorting Ascending or Descending Order in Javascript19-07-2017 Javascript ascending order descending order |
Filters for convert text to camel case in Angular Js05-03-2017 angularjs camelcase filters |
How to get drop down value when drop down change using javascript27-02-2017 onchange events dropdown javascript functions |
Send Mail in Node Js21-02-2017 node js mail npm module |