FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-algorithms/algorithms/strings/repeat_string.py at master · ilyvsc/python-algorithms · GitHub
ilyvsc
/
python-algorithms
Public
forked from
keon/algorithms
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-algorithms
/
algorithms
/
strings
/
repeat_string.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (19 loc) · 748 Bytes
Breadcrumbs
python-algorithms
/
algorithms
/
strings
/
repeat_string.py
Copy path
File metadata and controls
24 lines (19 loc) · 748 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
Given two strings A and B, find the minimum number of times A has to be repeated such that B is a substring of it. If no such solution, return -1.
For example, with A = "abcd" and B = "cdabcdab".
Return 3, because by repeating A three times (“abcdabcdabcd”), B is a substring of it; and B is not a substring of A repeated two times ("abcdabcd").
Note:
The length of A and B will be between 1 and 10000.
Reference: https://leetcode.com/problems/repeated-string-match/description/
"""
def
repeat_string
(
A
,
B
):
count
=
1
tmp
=
A
max_count
=
(
len
(
B
)
/
len
(
A
))
+
1
while
not
(
B
in
tmp
):
tmp
=
tmp
+
A
if
(
count
>
max_count
):
count
=
-
1
break
count
=
count
+
1
return
count
Back
|
FazBrowse Home
|
New Git URL