Ad
  • Custom User Avatar

    reviewd my code and tested it on all combination - it works 100%. I have an internal error
    and it makes sense -> my code fails always on the 15 test - the test are random and I found it fails
    on tests which I allready succeeded in previuos attempts. ):

  • Custom User Avatar

    The error is:
    TypeError: Cannot read property '0' of undefined
    at addPositions
    at turg
    at /home/codewarrior/index.js:315:29
    at /home/codewarrior/index.js:513:5
    at Object.handleError

    thrown after solving all the tests - the reason I'm not specific is that if I include my code than the message is hidden and I can't see it since it does not let me solve it.

  • Custom User Avatar

    My solution works for any givven position of the K tested on the site and in jsffidle.
    When I submit it throws a js error after passing all the tests -> check the hidden comment with the link to the fiddle
    test that iterate all possible cases...

  • Custom User Avatar

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

  • Custom User Avatar

    Should be n < 1 :)

    Zero is not a diamont 1 is the smallest.

    Great Solution!!!

  • Custom User Avatar

    You don't need to filter both every time - Just filter evens and if evens length is greater than 1
    then you can filter the odds inside the terinary condition.
    Also no need to parse int JS will assume its numbers by it self.... :)

    Take a look at my answer its much more efficient