summaryrefslogtreecommitdiff
path: root/progs/unparsable_programs/a621.py
blob: 5db06b70f98687b85a32cab5dd68085cd9960577 (plain)
1
2
3
def count_odd(array_nums):
   count_odd = len(list(filter(lambda x: (x%2 != 0) , array_nums)))
   return count_odd