Ad
  • Custom User Avatar

    @JohanWiltink - This was only added to the kata description in response to NekoDanuki's comment

  • Custom User Avatar

    Yes you are correct. If n is smaller than 0, then array[n] would return undefined and Math.pow(undefined, n) will return NaN. However, none of the test cases include negative values of n, so this will not occur.

  • Custom User Avatar

    I kept coming back to this Kata over and over again, but each time I couldn't solve it... I eventually Googled 'popular dice games' and immediately found the rules of the game. After that, it wasn't difficult to code a solution. It was very satisfying to finally solve this one!