-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMinimumChangesToMakeAlternatingBinaryString.php
More file actions
45 lines (43 loc) · 1.41 KB
/
Copy pathMinimumChangesToMakeAlternatingBinaryString.php
File metadata and controls
45 lines (43 loc) · 1.41 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
<?php
namespace App;
/**
* Minimum Changes To Make Alternating Binary String
*
* You are given a string s consisting only of the characters '0' and '1'. In one operation, you can change any '0' to
* '1' or vice versa. The string is called alternating if no two adjacent characters are equal. For example, the string
* "010" is alternating, while the string "0100" is not.
* Return the minimum number of operations needed to make s alternating.
*
* Example 1:
* Input: s = "0100"
* Output: 1
* Explanation: If you change the last character to '1', s will be "0101", which is alternating.
*
* Example 2:
* Input: s = "1111"
* Output: 2
* Explanation: You need two operations to reach "0101" or "1010".
*
* https://leetcode.com/problems/minimum-changes-to-make-alternating-binary-string
*/
class MinimumChangesToMakeAlternatingBinaryString
{
/**
* @param string $str
* @return int
*/
public function minOperations(string $str): int
{
$numAlterations1 = 0;
$numAlterations2 = 0;
for ($i = 0; $i < strlen($str); $i++) {
if (($i % 2 === 0 && $str[$i] === '1') || ($i % 2 === 1 && $str[$i] === '0')) {
$numAlterations1++;
}
if (($i % 2 === 0 && $str[$i] === '0') || ($i % 2 === 1 && $str[$i] === '1')) {
$numAlterations2++;
}
}
return min($numAlterations1, $numAlterations2);
}
}