Ad
  • Default User Avatar

    apologies, my code is wrong here as I was taking the odd numbers to a new array and then inserting even ones at their index locations which made repeating numbers insert at first index... :))

  • Custom User Avatar
    [-37, -2, -2, -23, -18, 44, 16, -19] should equal [-37, -2, -23, -18, 44, 16, -19, -2]
    #    your function returned this                        this was the expected value
    

    What was the input value?

  • Default User Avatar

    There is an issue with negative numbers it seems, doesn't allow the kata to pass, e.g. [-37, -2, -2, -23, -18, 44, 16, -19] should equal [-37, -2, -23, -18, 44, 16, -19, -2]

    -2 is even, right? so why should one of the -2 be moved to the end of the list?

  • Custom User Avatar

    The logs tells you your result should equal correct result. Tests are most likely good, and however you don't give even us the input and your result is obviously incorrect. Please don't raise issues lightly and read carefully this: https://docs.codewars.com/training/troubleshooting/

  • Default User Avatar

    there is an error in 'attempt' tests which block to pass this kata.
    Example:
    "Python"
    Test log showed:
    [11, 1, 11, 11, 2, 1, 111, 0] should equal [1, 1, 5, 11, 2, 11, 111, 0]

    as you can see in test data there are 3 occurances of '11' but in expected result - only 2

    the same problem with all other failed tests, missing values in input that are expected in output or vice versa