mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
5 lines
99 B
Python
5 lines
99 B
Python
def oddOrEven(arr):
|
|
if sum(arr) % 2 == 0:
|
|
return 'even'
|
|
else:
|
|
return 'odd'
|