Question: 
Write a function to find number of odd elements in the given list using lambda function.


Model's Code:
def count_odd(lst):
    return len(list(filter(lambda x: x % 2 != 0, lst)))



Sample Correct Code:
def count_odd(array_nums):
   count_odd = len(list(filter(lambda x: (x%2 != 0) , array_nums)))
   return count_odd


Asserts:
assert count_odd([1, 2, 3, 5, 7, 8, 10])==4
assert count_odd([10,15,14,13,-18,12,-20])==2
assert count_odd([1, 2, 4, 8, 9])==2


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 258 of 974: 185/258 (71.70542635658916%): success