There are more than 7 tests.
I was getting the same error.
I had this line of code: if len(alphabet) < alphabet.index(char) + 13:
And the error message went away when I replaced "<" with "<=".
i am also facing same problem. Please share test case
Also having htis problem.
would love a solution to this as well, i am having the same problem...
When I submit, I have after 7 test passed an error: "Traceback: in in static in rot13 IndexError: string index out of range" I have no clue why, can somebody give me some test cases that could generate such an error? It's highly appreciated!! :p
In the test case: the space amount is incorrect, it's three and it should be two.
Loading collection data...
There are more than 7 tests.
I was getting the same error.
I had this line of code:
if len(alphabet) < alphabet.index(char) + 13:
And the error message went away when I replaced "<" with "<=".
i am also facing same problem. Please share test case
Also having htis problem.
would love a solution to this as well, i am having the same problem...
When I submit, I have after 7 test passed an error:
"Traceback:
in
in static
in rot13
IndexError: string index out of range"
I have no clue why, can somebody give me some test cases that could generate such an error?
It's highly appreciated!! :p
In the test case: the space amount is incorrect, it's three and it should be two.