Skip to content

Instantly share code, notes, and snippets.

@lyoshenka
Created February 23, 2013 17:56
Show Gist options
  • Save lyoshenka/5020660 to your computer and use it in GitHub Desktop.
Save lyoshenka/5020660 to your computer and use it in GitHub Desktop.
#!/usr/bin/php
<?php
$thisFile = array_shift($argv);
if (!$argv)
{
echo "Usage: $thisFile INTEGER INTEGER ...\n";
die(1);
}
$frequency = array_count_values($argv);
arsort($frequency);
print_r($frequency);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment