29 Oct
2022
29 Oct
'22
7:49 p.m.
options_for_making_x_2 = dict( increment = lambda x: x + 1 if x != 1 else x decrement = lambda x: x - 1 if x != 3 else x double = lambda x: x * 2 if x != 1 else x halve = lambda x: x / 2 if x != 4 else x )