-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday5.php
More file actions
executable file
·107 lines (80 loc) · 2 KB
/
day5.php
File metadata and controls
executable file
·107 lines (80 loc) · 2 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
$inputFile = fopen("input5.txt",'r');
function hasVowels($string) {
$vowels = array('a','e','i','o','u');
$count = 0;
foreach ($vowels as $vowel) {
$count = $count + substr_count($string,$vowel);
if ($count >= 3) {
break;
}
}
if ($count >= 3) {
return true;
} else {
return false;
}
}
function hasDoubbleLetters($string) {
$double = false;
$prev = $string[0];
for ($i=1; $i < strlen($string); $i++) {
$actual = $string[$i];
if ($actual === $prev) {
$double = true;
break;
}
$prev = $actual;
}
return $double;
}
function hasForbidenStrings($string) {
$forbidenStrings = array('ab','cd','pq','xy');
$forbiden = false;
foreach ($forbidenStrings as $substring) {
if (strpos($string, $substring) !== FALSE) {
$forbiden = true;
break;
}
}
return $forbiden;
}
function hasPair($string) {
for ($i=0; $i < strlen($string)-1; $i++) {
$workingString = $string;
$substr = substr($workingString, $i, 2);
$workingString[$i] = '-';
$workingString[$i+1] = '-';
if (strpos($workingString, $substr) !== FALSE ) {
return true;
};
}
return false;
}
function hasSingleLetterBetween($string) {
$hasSingle = false;
$prevPrev = $string[0];
$prev = $string[1];
for ($i=2; $i < strlen($string); $i++) {
$actual = $string[$i];
if ($actual === $prevPrev) {
$hasSingle = true;
break;
}
$prevPrev = $prev;
$prev = $actual;
}
return $hasSingle;
}
$nice = 0;
while ($row = fgets($inputFile)) {
$string = trim($row);
// if (hasVowels($string) && hasDoubbleLetters($string) && !hasForbidenStrings($string)) {
// $nice++;
// }
if (hasPair($string) && hasSingleLetterBetween($string)) {
$nice++;
}
}
fclose($inputFile);
var_dump($nice);