Beta

The "Small" Password Game

Description
Loading description...
Puzzles
Regular Expressions
View
AllIssues3QuestionsSuggestionsShow Resolved
  • Please sign in or sign up to leave a comment.
  • Voile Avatar

    Related to the issue below, and a more serious one: the kata is impossible to pass at certain dates due to the same reason causing fixed tests that expect total digit sum to be at least 25 to fail. If YYYYMMDD's digit sum is less than 10 (such as 2030-01-12) this will happen.

    • pablo.fs Avatar

      Thanks for the help. The test are now changed so they will pass the lowest date possible, being 2100-10-01, which adds up to 5.

      Issue marked resolved by pablo.fs 2 years ago
  • Voile Avatar

    Okay, an actual issue this time: containing today's date in YYYYMMDD and digit sum being at least 25 is the same condition for certain dates. For example, the date 20240929 adds up to 28, which means if it doesn't exist in the password then the password is invalid, and if it exists then you don't need to check digit sum anymore. So during certain dates the kata will become easier, which is not very future-proof.

    • Voile Avatar

      It's very easy to test this with

      LocalDate.now(Clock.fixed(Instant.parse( "2024-09-29T00:00:00Z"), ZoneOffset.UTC))
      

      instead of

      LocalDate.now()
      
    • pablo.fs Avatar

      I see your issue here, we made this kata as a little validation for some of the rules of the original game plus some more created by us. We wanted to make no changes to the original rules if it was possible, and we thought of that possibility, but didn't see it as a strong issue. Do you think is a big problem and we should change it?

    • pablo.fs Avatar

      Issue resolved (so it can be published)

      Issue marked resolved by pablo.fs 2 years ago
  • Voile Avatar

    It is not mentioned whether the "today date" checking is case-insensitive (and the tests do not check for this either).

    • pablo.fs Avatar

      As it's mentioned in the description the today date has the format YYYYMMDD, which all are numbers. I don't understand your issue. Can you explain yourself?

    • Voile Avatar

      Oh okay, I thought the date contains letters.

      Issue marked resolved by Voile 2 years ago