We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 071d71b commit eb2895cCopy full SHA for eb2895c
src/main/java/g3101_3200/s3137_minimum_number_of_operations_to_make_word_k_periodic/readme.md
@@ -30,33 +30,14 @@ We can obtain a 4-periodic string by picking i = 4 and j = 0. After this operati
30
31
We can obtain a 2-periodic string by applying the operations in the table below.
32
33
-i
34
-
35
-j
36
37
-word
38
39
-0
40
41
-2
42
43
-etetcoleet
44
45
-4
46
47
48
49
-etetetleet
50
51
-6
52
53
54
55
-etetetetet
+ i j word
+ 0 2 etetcoleet
+ 4 0 etetetleet
+ 6 0 etetetetet
56
57
**Constraints:**
58
59
* <code>1 <= n == word.length <= 10<sup>5</sup></code>
60
* `1 <= k <= word.length`
61
* `k` divides `word.length`.
62
-* `word` consists only of lowercase English letters.
+* `word` consists only of lowercase English letters.
0 commit comments