Ad
  • Default User Avatar
    Thanks, and sorry.
    Just so others are aware the sample test still only works for 2.7.6 and 3.4.3.
    3.6.0 still has the same error, although the full test does work.
    Again thanks for your help.
  • Default User Avatar
    There seems to be an issue with the test for Python 3.6.
    I edited the code as below, so it returns the correct result without any computation:

    def decodeBits(bits):
        reurn ".... . -.--   .--- ..- -.. ."

    def decodeMorse(morseCode):
        return "HEY JUDE"

    With this code I get still get the error:

    File "main.py", line 7
        print "<pre style='display:inline'>Got '%s', expected '%s'</pre>" % (got, expected)

    If I change the complier to 2.7.6 it does work for the above code, but not for my solution due unknown version 3 commands.
    It would be great to see this working so I can fully test my solution.
    :-)