Skip to content

This is how I resolved the ReallyBig Sum from HackerRank.

Notifications You must be signed in to change notification settings

mbista/HR_ReallyBigSum

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

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

About

This is how I resolved the ReallyBig Sum from HackerRank.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages