1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-18 21:56:57 +02:00
CodeWars/8kyu/sum_of_positive/solution.py

3 lines
68 B
Python
Raw Normal View History

def positive_sum(arr):
return sum(filter(lambda e: e > 0, arr))