-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDivideStringIntoGroupsOfSizeK.php
More file actions
69 lines (67 loc) · 2.58 KB
/
Copy pathDivideStringIntoGroupsOfSizeK.php
File metadata and controls
69 lines (67 loc) · 2.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
namespace App;
/**
* Divide a String Into Groups of Size k
*
* A string s can be partitioned into groups of size k using the following procedure:
* - The first group consists of the first k characters of the string, the second group consists of the next k
* characters of the string, and so on. Each character can be a part of exactly one group.
* - For the last group, if the string does not have k characters remaining, a character fill is used to complete the
* group.
* Note that the partition is done so that after removing the fill character from the last group (if it exists) and
* concatenating all the groups in order, the resultant string should be s.
* Given the string s, the size of each group k and the character fill, return a string array denoting the composition
* of every group s has been divided into, using the above procedure.
*
* Example 1:
* Input: s = "abcdefghi", k = 3, fill = "x"
* Output: ["abc","def","ghi"]
* Explanation:
* The first 3 characters "abc" form the first group.
* The next 3 characters "def" form the second group.
* The last 3 characters "ghi" form the third group.
* Since all groups can be completely filled by characters from the string, we do not need to use fill.
* Thus, the groups formed are "abc", "def", and "ghi".
*
* Example 2:
* Input: s = "abcdefghij", k = 3, fill = "x"
* Output: ["abc","def","ghi","jxx"]
* Explanation:
* Similar to the previous example, we are forming the first three groups "abc", "def", and "ghi".
* For the last group, we can only use the character 'j' from the string. To complete this group, we add 'x' twice.
* Thus, the 4 groups formed are "abc", "def", "ghi", and "jxx".
*
* https://leetcode.com/problems/divide-a-string-into-groups-of-size-k
*/
class DivideStringIntoGroupsOfSizeK
{
/**
* @param string $str
* @param int $k
* @param string $fill
* @return string[]
*/
public function divideString(string $str, int $k, string $fill): array
{
$result = [];
$strLength = strlen($str);
$fillCount = 0;
$group = '';
for ($i = 0; $i < $strLength; $i++) {
$group .= $str[$i];
if (($i + 1) % $k === 0) {
$result[] = $group;
$group = '';
}
}
if ($group !== '') {
$fillCount = $k - strlen($group);
$group .= str_repeat($fill, $fillCount);
$result[] = $group;
}
if ($fillCount > 0) {
$result[count($result) - 1] = substr($result[count($result) - 1], 0, $k);
}
return $result;
}
}