Ad
  • Custom User Avatar

    64 / 11 > 5, the expected answer is 'Nice Work Champ!'. Your code is wrong if its answer is not that.

  • Custom User Avatar
  • Custom User Avatar

    For Java kata description, add the case for Tie game.

    Where both players got the same score

  • Custom User Avatar

    Hmm. If you invent your own enum, and it has a problem, then that is your issue -- not an ISSUE with this Kata.

  • Custom User Avatar

    Yes, my enum consists only of 2 values PING and PONG

    But it wants for some reason for value BINK to be there...

  • Custom User Avatar

    This one does not appear to work in Go. It fails to compile the tests without making any modifications to it.

  • Default User Avatar

    No enum constant Dinglemouse.Player.BINK

    enum Player { PING, PONG;

    ??

  • Default User Avatar

    .

  • Default User Avatar

    I'm guessing you missed the random part from: "Whoever picks the ball off the floor will serve next. It's random."

  • Custom User Avatar

    Game from Attempt: ping-pong-aaaa-ping-pong-ping-aaaa
    Rule: If scores are even, then the winner is the player who did NOT hit the final bad shot.

    Scores: Even
    Expected winner: ping

    My question: why? Score is 1:1. Last player who messed up was ping. Pong should be winner

  • Custom User Avatar

    Now do a beer pong kata!

  • Custom User Avatar

    Not a kata issue. Closing.

  • Custom User Avatar

    Hi, only I receive this error in java ?

    No enum constant Dinglemouse.Player.BINK
    

    I just implemented my own enum called Player, but seams like I am not able to do so...

    Renaming the enum also doesn't help.

    enum Player {
        PING, PONG;
    
        public String toLowerCase() {
            return this.toString().toLowerCase();
        }
    }
    
  • Custom User Avatar

    Clever way of cheating :)

  • Custom User Avatar

    @Phlipside

    The four extra 't's are the four extra heads, there are 4 dead ants here.

    Interesting. I'd always thought of 't' as the "tail" of my ants.

  • Loading more items...