Ad
  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    fixed.

  • Custom User Avatar

    thank you both! And that's true (@jpssj) I forgot in python I can use a string like and array hahaha.

  • Custom User Avatar

    Your first two list comprehensions are useless, but your code seems fine apart from that. It throws an IndexError when s1 or s2 contain uppercase letters, and that's strange since the description says Only lower case letters will be used (a-z). No punctuation or digits will be included.. If you replace ord(i) with ord(i.lower())in your code, it should pass the tests.

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    Your method is correct. Theres a bug in tests because there are inputs with uppercase letters.

    BTW you can see inputs by printing them with print(s1 + ' ' + s2).

  • Custom User Avatar

    Hey, Hi again. There's no timing out for me I already found a "good" solution, but I got other issue... It gives me just one error that is impossible to happen due the structure of my solution. So,does anyone know how to view the source code of sample test?

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    Thanks for explain. I didn't figure out by my self