mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
10 lines
184 B
PHP
10 lines
184 B
PHP
|
function printerError($s) {
|
||
|
$length = strlen($s);
|
||
|
$errors = 0;
|
||
|
|
||
|
for ($i = 0; $i < $length; $i++) {
|
||
|
if ($s[$i] > 'm') $errors++;
|
||
|
}
|
||
|
return "$errors/$length";
|
||
|
}
|