Ad
  • Custom User Avatar

    Hi, I published a C++ translation for this Kata.

  • Custom User Avatar
  • Custom User Avatar

    consecutive number series

    This wording needs to change, as the numbers themselves do not have to be consecutive.
    eg: '01' and '93' are both valid series.
    I suggest removing the word consecutive and updating the example to include non consecutive numbers.

  • Custom User Avatar

    Please add some random test cases.

  • Custom User Avatar

    Input/output inconsistency:

    If the input is a string the returned values should also be strings.

  • Custom User Avatar

    Method arguments given are confusing.

    series(slice, n)

    slice is an array method, n is a string not a number.

    Suggest instead:

    series(length, string)