mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
9 lines
184 B
PHP
9 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";
|
|
}
|