Skip to content
Advertisement

Given two strings, determine if they share a common substring

This is my first Question here, I need to know why the following code does not pass Sample test case 2 in hacker rank-> Algorithms-> Strings-> Two Strings: The question is here: https://www.hackerrank.com/challenges/two-strings/problem

JavaScript

Sample test case 2:
2

JavaScript

my code gives: No No but the expected output is: Yes No

Advertisement

Answer

I’m assuming one of the test cases uses a fairly large string with a lot of duplicate letters. You can try editing your solution to keep track of substrings you’ve already checked. For example:

JavaScript

Running your function with the checked List does not run into the time limit.

But this got me thinking “a Stream can do all of this” and that had me solving this problem in a completely different manner:

JavaScript

Without the .distinct() step I also get a timeout on tests 4 and 5, but with it all tests pass reasonably quickly.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement