Skip to content

Latest commit

 

History

History

001_Sum_n_numbers

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Bite 1. Sum n numbers

Write a function that can sum up numbers:

  • It should receive a list of n numbers.
  • If no argument is provided, return sum of numbers 1..100.
  • Look closely to the type of the function's default argument ...

Have fun!