1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-10-18 10:42:08 +02:00
CodeWars/8kyu/sum_arrays/solution.py

6 lines
78 B
Python
Raw Normal View History

def sum_array(a):
sum = 0
for e in a:
sum += e
return sum