Skip to content

Instantly share code, notes, and snippets.

@jenkoian
Created February 19, 2015 13:29
Show Gist options
  • Save jenkoian/a3c85b92448ebdf0f2db to your computer and use it in GitHub Desktop.
Save jenkoian/a3c85b92448ebdf0f2db to your computer and use it in GitHub Desktop.
Sainsburys VowelCounter Challenge
<?php
class VowelCounter {
function count($string) {
return array_reduce(str_split($string), function($vowelCount, $str) { return $vowelCount += in_array($str, ['a', 'e', 'i', 'o', 'u']);});
}
}
$vc = new VowelCounter();
echo $vc->count('php uk conference');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment