Skip to content

Latest commit

 

History

History

sum-arrays

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
  • Completed at: 2023-03-27T00:16:20.875Z

  • Completed languages: javascript

  • Tags: Arrays, Fundamentals

  • Rank: 8 kyu

Description

Write a function that takes an array of numbers and returns the sum of the numbers. The numbers can be negative or non-integer. If the array does not contain any numbers then you should return 0.

Examples

Input: [1, 5.2, 4, 0, -1]
Output: 9.2

Input: []
Output: 0

Input: [-2.398]
Output: -2.398

Assumptions

  • You can assume that you are only given numbers.
  • You cannot assume the size of the array.
  • You can assume that you do get an array and if the array is empty, return 0.
Tests expect accuracy of `1e-4`.

What We're Testing

We're testing basic loops and math operations. This is for beginners who are just learning loops and math operations.
Advanced users may find this extremely easy and can easily write this in one line.