-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsherlock_problem.php
63 lines (47 loc) · 1.38 KB
/
sherlock_problem.php
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
<?php
// Complete the isValid function below.
function isValid($s) {
$values="YES";
$NoOfUniqueAlphabets=0;
$differenceCount=0;
$minimum=0;
$maximum=1;
//Complexity constant as there's fixed no of alphabets and doesn't depend on n
$alphabet=range('a','z');
$alphabet_count=array_fill_keys($alphabet,0);
$input=str_split($s);
//Complexity O(n) where n is max length of the string
for($i=0;$i<count($input);$i++)
{
$alphabet_count[$input[$i]]=$alphabet_count[$input[$i]]+1;
if ($maximum<$alphabet_count[$input[$i]])
$maximum=$alphabet_count[$input[$i]];
else
$minimum=$alphabet_count[$input[$i]];
}
if(($maximum-$minimum)>1)
$values="NO";
else
{
foreach($alphabet_count as $key=>$value)
{
if($value>0)
{
$NoOfUniqueAlphabets++;
if($value<$minimum)
$minimum=$value;
if (($value!=$maximum))
$differenceCount++;
}
}
//If there's only one difference it can be removed
if
(
(($NoOfUniqueAlphabets-$differenceCount)>1 or ($maximum-$minimum)>1 )
and($differenceCount>1)
)
$values="NO";
}
return $values;
}
?>