minus-squarebob_lemon@feddit.orglinkfedilinkarrow-up52·edit-221 days agoimport re def is_even(i: int) -> bool: return re.match(r"-?\d*[02468]$", str(i)) is not None
minus-squarelime!@feddit.nulinkfedilinkEnglisharrow-up5·20 days agoi was gonna suggest the classic re.match(r"^(..)\1*$", "0" * abs(i)) is not None
import re def is_even(i: int) -> bool: return re.match(r"-?\d*[02468]$", str(i)) is not None
Cursed
i was gonna suggest the classic