Ad
Code
Diff
  • is_even = lambda x: not bool(x % 2)
    
    • is_even = lambda x: not x & 1
    • is_even = lambda x: not bool(x % 2)