Skip to content

Latest commit

 

History

History
42 lines (22 loc) · 905 Bytes

README.md

File metadata and controls

42 lines (22 loc) · 905 Bytes

HR_ReallyBigSum

This is how I resolved the ReallyBig Sum from HackerRank. It was actually not that difficult by makign use of the For loop.

Problem

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[n]≤ 1010

Sample Input:

5

1000000001 1000000002 1000000003 1000000004 1000000005

Output

5000000015