Ad
  • Custom User Avatar

    decodeMorse('. .') == 'EE'
    decodeMorse('.   .') == 'E E'

    I don't see any tests with input [".", "."]. Do you?

  • Custom User Avatar

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

  • Default User Avatar

    test should check whether the numbers are power of 4 , divisible by 4 musn't be enough to pass all test, please check your tests or change the kata description.

  • Custom User Avatar

    You need to return a Boolean value not a string value. Also, it wants powers of 4 (4x) not factors of 4.

  • Custom User Avatar

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