Skip to content

Latest commit

 

History

History

add-all-nums

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Add All Numbers

Write a function that takes in a list of numbers. It should return the sum of all the numbers in the list.

For example:

[1, 1, 1] => 1 + 1 + 1 => 3

[] => 0

Solutions

Wanna contribute a solution in your favorite language? Go ahead! We welcome your pull requests :)