Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 300 Bytes

File metadata and controls

3 lines (2 loc) · 300 Bytes

Write a function difference_is_even(a: int, b: int) -> bool that takes two integers and returns True if the absolute difference between the two numbers is even, and False otherwise.

Hint: Solve Is Even and Calculate Absolute first.