Skip to content

zehash-developer/sum-array-values

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

In this challenge, you are required to 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):

int ar[n]: an array of integers .

Return

long: the sum of all array elements

Input Format

The first line of the input consists of an integer n. The next line contains space-separated integers contained in the array.

Output Format

Return the integer sum of the elements in the array.

Note:

The range of the 32-bit integer is (-2^31 to 2^31-1). When we add several integer values, the resulting sum might exceed the above range. You might need to use long int C/C++/Java to store such sums.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published