-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSolution.java
37 lines (34 loc) · 882 Bytes
/
Solution.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
/**
* Created by Inno Fang on 2018/3/18.
*/
class Solution {
/**
* 14 / 14 test cases passed.
* Status: Accepted
* Runtime: 11 ms
* @param s
* @param t
* @return
*/
public boolean isSubsequence(String s, String t) {
if (s.isEmpty()) return true;
if (t.isEmpty()) return false;
int i = t.indexOf(s.charAt(0));
return i != -1 && (s.length() == 1 || isSubsequence(s.substring(1), t.substring(i + 1)));
}
/**
* 14 / 14 test cases passed.
* Status: Accepted
* Runtime: 3 ms
* @param s
* @param t
* @return
*/
public boolean isSubsequence2(String s, String t) {
for (int i = 0, pos = 0, len = s.length(); i < len; i++, pos++){
pos = t.indexOf(s.charAt(i), pos);
if (pos == -1) return false;
}
return true;
}
}