79630835

Date: 2025-05-20 16:43:16
Score: 0.5
Natty:
Report link

The number of iterations can be passed as a parameter:

f = lambda x, lim: f((2*x)%99, lim-1) if lim > 1 else x

Using:

print(f(1, lim=10))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Konstantin Makarov