Ad
  • Custom User Avatar

    Same problem occuring

  • Custom User Avatar

    Hi marcynn, I'm afraid this is an issue with your code and not with the kata. Your current solution is not failing on those test inputs; try printing out the input and double-check you're looking at the right test. If you read the discussions below you might find clues to where you're going wrong.

    I've just submitted a working Python solution to make sure and it succeeded.

  • Default User Avatar

    Test code is wrong on the following:

        test.assert_equals(is_valid_IP('0.0.0.0'),          True)
        test.assert_equals(is_valid_IP('0.34.82.53'),       True)
    

    When I click on test, I get that everything is valid. However, when I click Attempt, I receive that the above assertions should be False.