1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-08 01:26:57 +02:00
CodeWars/7kyu/odd_or_even/solution.py

6 lines
99 B
Python
Raw Normal View History

def oddOrEven(arr):
if sum(arr) % 2 == 0:
return 'even'
else:
return 'odd'