Ad
Code
Diff
  • flip_the_number = lambda x: int(str(x)[::-1])
    • def flip_the_number(x):
    • return int(str(x)[::-1])
    • flip_the_number = lambda x: int(str(x)[::-1])