Watch 10 video solutions for Sentence Similarity III, a medium level problem involving Array, Two Pointers, String. This walkthrough by NeetCodeIO has 11,711 views views. Want to try solving it yourself? Practice on FleetCode or read the detailed text solution.
You are given two strings sentence1 and sentence2, each representing a sentence composed of words. A sentence is a list of words that are separated by a single space with no leading or trailing spaces. Each word consists of only uppercase and lowercase English characters.
Two sentences s1 and s2 are considered similar if it is possible to insert an arbitrary sentence (possibly empty) inside one of these sentences such that the two sentences become equal. Note that the inserted sentence must be separated from existing words by spaces.
For example,
s1 = "Hello Jane" and s2 = "Hello my name is Jane" can be made equal by inserting "my name is" between "Hello" and "Jane" in s1.s1 = "Frog cool" and s2 = "Frogs are cool" are not similar, since although there is a sentence "s are" inserted into s1, it is not separated from "Frog" by a space.Given two sentences sentence1 and sentence2, return true if sentence1 and sentence2 are similar. Otherwise, return false.
Example 1:
Input: sentence1 = "My name is Haley", sentence2 = "My Haley"
Output: true
Explanation:
sentence2 can be turned to sentence1 by inserting "name is" between "My" and "Haley".
Example 2:
Input: sentence1 = "of", sentence2 = "A lot of words"
Output: false
Explanation:
No single sentence can be inserted inside one of the sentences to make it equal to the other.
Example 3:
Input: sentence1 = "Eating right now", sentence2 = "Eating"
Output: true
Explanation:
sentence2 can be turned to sentence1 by inserting "right now" at the end of the sentence.
Constraints:
1 <= sentence1.length, sentence2.length <= 100sentence1 and sentence2 consist of lowercase and uppercase English letters and spaces.sentence1 and sentence2 are separated by a single space.Problem Overview: You are given two sentences. The sentences are considered similar if you can insert a sequence of words into one sentence so that both become identical. The task reduces to checking whether the shorter sentence matches the prefix and suffix of the longer sentence.
Approach 1: Two Pointers Technique (O(n) time, O(n) space)
Split both sentences into arrays of words using a space delimiter. Use the two pointers pattern to match words from the start and from the end. First iterate forward while words match, counting the common prefix. Then iterate backward while words match, counting the common suffix. If the total matched words cover the entire shorter sentence, the remaining unmatched portion in the longer sentence represents the inserted segment. This approach works because valid similarity only allows extra words in the middle of one sentence.
The algorithm performs sequential comparisons across the word arrays, which keeps the complexity linear. It only stores the tokenized sentences, so space complexity is proportional to the number of words. This is the most practical solution and commonly used in interview discussions involving array traversal and string manipulation.
Approach 2: Dynamic Programming (O(n*m) time, O(n*m) space)
A dynamic programming approach models the problem as finding the longest common subsequence (LCS) between the two word arrays. Build a DP table where dp[i][j] stores the LCS length for the first i words of one sentence and the first j words of the other. If the LCS length equals the size of the shorter sentence and the matched words appear as a prefix and suffix combination, the sentences are similar. This method systematically explores all alignments of words.
Although DP guarantees correctness, it performs unnecessary work because the allowed insertion pattern only occurs in the middle of the sentence. The time and space cost grows with the product of both sentence lengths, which makes it less efficient than the pointer-based method.
Recommended for interviews: The two pointers technique is the expected solution. It demonstrates that you recognize the structural constraint: only the middle section can differ. Explaining a brute-force or DP idea first shows problem exploration, but implementing the O(n) two-pointer scan proves strong algorithmic judgment.
| Approach | Time | Space | When to Use |
|---|---|---|---|
| Two Pointers Technique | O(n) | O(n) | Best choice when comparing word sequences and only a middle insertion is allowed |
| Dynamic Programming (LCS) | O(n*m) | O(n*m) | Useful for learning or when solving generalized subsequence similarity problems |