79186010

Date: 2024-11-13 17:27:51
Score: 0.5
Natty:
Report link

Adjust powerdecimal to start from the highest valid power (currently one too high)

Change this:

while resultdecimal >= 2 ** powerdecimal:
    powerdecimal += 1

To this:

while resultdecimal >= 2 ** powerdecimal:
    powerdecimal += 1
powerdecimal -= 1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: EuanG