mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-22 08:33:48 +01:00
5 lines
78 B
Python
5 lines
78 B
Python
def sum_array(a):
|
|
sum = 0
|
|
for e in a:
|
|
sum += e
|
|
return sum
|