-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaximumRepeatingSubstring.php
More file actions
47 lines (45 loc) · 1.27 KB
/
Copy pathMaximumRepeatingSubstring.php
File metadata and controls
47 lines (45 loc) · 1.27 KB
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
<?php
namespace App;
/**
* Maximum Repeating Substring
*
* For a string sequence, a string word is k-repeating if word concatenated k times is a substring of sequence. The
* word's maximum k-repeating value is the highest value k where word is k-repeating in sequence. If word is not
* a substring of sequence, word's maximum k-repeating value is 0. Given strings sequence and word, return the maximum
* k-repeating value of word in sequence.
*
* Example 1:
* Input: sequence = "ababc", word = "ab"
* Output: 2
* Explanation: "abab" is a substring in "ababc".
*
* Example 2:
* Input: sequence = "ababc", word = "ba"
* Output: 1
* Explanation: "ba" is a substring in "ababc". "baba" is not a substring in "ababc".
*
* Example 3:
* Input: sequence = "ababc", word = "ac"
* Output: 0
* Explanation: "ac" is not a substring in "ababc".
*
* https://leetcode.com/problems/maximum-repeating-substring
*/
class MaximumRepeatingSubstring
{
/**
* @param string $sequence
* @param string $word
* @return int
*/
public function maxRepeating(string $sequence, string $word): int
{
$max = 0;
$i = 1;
while (str_contains($sequence, str_repeat($word, $i))) {
$max = $i;
$i++;
}
return $max;
}
}