Skip to content

Instantly share code, notes, and snippets.

@dflima
Last active November 7, 2017 18:36
Show Gist options
  • Save dflima/d98c202d39efe66dcc7799bca609505e to your computer and use it in GitHub Desktop.
Save dflima/d98c202d39efe66dcc7799bca609505e to your computer and use it in GitHub Desktop.
<?php
$handle = fopen ("php://stdin", "r");
function birthdayCakeCandles($n, $ar) {
// Complete this function
$a = array_count_values($ar);
rsort($a, SORT_NUMERIC);
return reset($a);
}
fscanf($handle, "%i",$n);
$ar_temp = fgets($handle);
$ar = explode(" ",$ar_temp);
$ar = array_map('intval', $ar);
$result = birthdayCakeCandles($n, $ar);
echo $result . "\n";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment