Ad
  • Default User Avatar

    Nope, not an issue. Kata works perfectly. Keep in mind that you are not just implementing the search function.

  • Custom User Avatar

    No problem :) thanks for the feedback!

  • Custom User Avatar

    As unnamed said, your job is to tell me if there is a substring that appears in both strings. In this case, "ocious" appears in both strings, so your function/method should return true. I'm marking this issue as resolved. If you have any other questions, feel free to ask.

  • Default User Avatar

    Given 2 strings, your job is to find out if there is a substring that appears in both strings. You will return true if you find a substring that appears in both strings, or false if you do not. We only care about substrings that are longer than one letter long.

    There is "ocious" and some other common substrings, so it works how it should.