Mayan Calculation puzzle discussion

I refer to the Constraints section:

0 < L, H < 100
0 < S1, S2 < 1000
The remainder of a division is always 0.
The mayan numbers given as input will not exceed 2**63.

I realy enjoyed it when solving.

I don’t know what is happening. I was able so solve the puzzle and have 100% however when I tried submit the results they weren’t loading so I tried to refresh and go backwards and it appears that I have 0% progress and now I’m afraid I lost everything.

I had an issue with the test “Base20”.
The problem I was facing was not because I was not reading all of values from the dictionary.

The issue was in the conversion from base 20 to base 10:
Instead of starting doing a multiplication with 20^(0…n), I was doing it with 20^(1…(n-1))

I want to emphasize that all other tests where passing but that one.
I hope it can help

I don’t understand how we find the power of 20 ???