Ad
  • Default User Avatar

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

  • Custom User Avatar

    OP solved it, closing!

  • Custom User Avatar
  • Custom User Avatar

    WTF? The solution I see just returns the 5 hardcoded sample tests. What did you expect?

    If you have any actual code, you can post it here with spoiler flag, or somewhere on Discord CW server. But given that it is a puzzle kata, you're not likely to receive much help.

  • Custom User Avatar
  • Default User Avatar

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

  • Default User Avatar

    In the Instructions: “5. The longest kill streak is worth 2^N, where N is the number of kills of the streak”, so I’ve began with the idea, that only one player, with the longest kill streak, gets points, and the others get 0. And surely enough it doesn’t work. So, I got, every player becomes points for their streak nevertheless is it the best/longest result among all the players or not.
    Maybe it’s better to determine “5. The kill streak is worth …”
    And one more thing, in the Instructions: “Players with the same score should be sorted by the order they appear in the array.” So, at first, I’ve sorted the results with key = (score, position) in case there are more than one player with the same score. But then I tried and found out, that the sorting with key = score can pass all the test as well.
    So maybe it’s better to dismiss this part of Instructions, or to add additional tests, where two players or more have the same result.
    Thank you.

  • Default User Avatar

    This solution is nice and short, but it is O(^2).

  • Custom User Avatar

    Exellent solution!!Nice code.

  • Custom User Avatar

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

  • Custom User Avatar

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

  • Default User Avatar

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

  • Default User Avatar

    Das war lustig aber … I couldn’t pass trough the first test (Python), the answer was
    “! 4 Vokale/Vowels -> der OOOpa: 'das wort' should equal 'der OOOpa'”,
    I’ve printed out the “wort” and it was “wort” for the first test, it should be “OOOpa”.
    But I managed to pass through random tests and submit my solution. Bitte korrigieren!
    And one more thing, in Instructions: “each noun containing 2/3 vowels …”,
    to my mind “containing 2-3 vowels…” or “containing 2 or 3 vowels…” would be better. Danke!

  • Custom User Avatar

    python new test framework is required. updated in this fork

  • Default User Avatar

    In random tests for Python there is always one test, where one of the ingredients that is already added to the mixture is not presented in the recipe. To my mind it’s pretty cruel, while in this case one cannot make the cake strictly to the recipe.

  • Loading more items...