-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1813_sentence_similarity_iii.java
42 lines (37 loc) · 1.31 KB
/
1813_sentence_similarity_iii.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
Problem : Sentence similarity 3
Inputs :-
- sentence1 : string of words seperated by spaces
- sentence2 : string of words seperated by spaces
Output :-
- boolean : check if both the sentences are similar
*/
class Solution {
public boolean areSentencesSimilar(String sentence1, String sentence2) {
String[] sentence1Arr = sentence1.split(" ");
String[] sentence2Arr = sentence2.split(" ");
if (sentence1Arr.length < sentence2Arr.length) {
return isSimilar(sentence1Arr, sentence2Arr);
} else {
return isSimilar(sentence2Arr, sentence1Arr);
}
}
private boolean isSimilar(String[] smallerSentence, String[] largerSentence) {
int smallerStart = 0;
int smallerEnd = smallerSentence.length - 1;
int largerStart = 0;
int largerEnd = largerSentence.length - 1;
while (smallerStart <= smallerEnd && largerStart <= largerEnd) {
if (largerSentence[largerStart].equals(smallerSentence[smallerStart])) {
largerStart++;
smallerStart++;
} else if (largerSentence[largerEnd].equals(smallerSentence[smallerEnd])) {
largerEnd--;
smallerEnd--;
} else {
return false;
}
}
return true;
}
}