forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_686.java
50 lines (47 loc) · 1.37 KB
/
_686.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
43
44
45
46
47
48
49
50
package com.fishercoder.solutions;
import java.util.HashSet;
import java.util.Set;
public class _686 {
public static class Solution1 {
public int repeatedStringMatch(String A, String B) {
Set<Character> set = new HashSet<>();
for (char c : A.toCharArray()) {
set.add(c);
}
for (char c : B.toCharArray()) {
if (!set.contains(c)) {
return -1;
}
}
StringBuilder stringBuilder = new StringBuilder(A);
for (int i = 0; i < B.length(); i++) {
if (stringBuilder.toString().contains(B)) {
return i + 1;
}
stringBuilder.append(A);
}
return -1;
}
}
public static class Solution2 {
/**
* Time: O(N(N+M))
* Space: O(N + M)
*/
public int repeatedStringMatch(String A, String B) {
int count = 1;
StringBuilder sb = new StringBuilder(A);
for (; sb.length() < B.length(); count++) {
sb.append(A);
}
if (sb.indexOf(B) >= 0) {
return count;
}
sb.append(A);
if (sb.indexOf(B) >= 0) {
return count + 1;
}
return -1;
}
}
}