summaryrefslogtreecommitdiff
path: root/progs/a206.py
blob: 16a664dc2e00ae0a1d7777ece69d67a6d6b108c9 (plain)
1
2
3
def first_odd(nums):
  first_odd = next((el for el in nums if el%2!=0),-1)
  return first_odd