Ad
  • Custom User Avatar

    ( JS, possibly others )

    The Example tests seem to warn for names with accented vowels in them. This then doesn't happen in Submit tests.

    Either remove accented letters from the kata completely, or test consistently between example and submit tests ( ie, add fixed and random tests expecting both true and false for names with accented vowels ).

  • Custom User Avatar

    Description promises us a "String" that is specified to be a first name, either hyphenated or not. So return true should solve the kata.

    That is, supposing yourID is that string, in which case it is horribly misnamed.

    I don't suppose things work that way, but it is unclear how things are supposed to work.

  • Default User Avatar

    Can we add new test cases for Lua to assert that NIL and Empty String ("") are also validated?
    Because I ran through some solutions for Lua and they work only for valid input and don't work for NIL values.
    Or at least remove the requirement from description

  • Custom User Avatar

    Ruby 3.0 should be enabled.

  • Custom User Avatar

    Ruby 3.0 should be enabled.

  • Default User Avatar

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

  • Custom User Avatar

    Random test cases expected false when the input string is valid:
    'bkngaojk.gif' - expected false, got true
    'jrgigirh.alac' - expected false, got true
    and so on...

    Am I missing something or are these actually invalid inputs?

  • Custom User Avatar

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

  • Custom User Avatar

    You could possibly list all the possible accentuated characters that may appear in the tests in your Kata description.

  • Custom User Avatar

    Add a test to cover the proper existence of a ., e.g.

    Test.expect(!'filemp3'.isAudio(), 'File name and extension should be separated by a dot (.) !');