Skip to content

Instantly share code, notes, and snippets.

@nielslange
Last active February 24, 2020 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nielslange/a12915f10955f50c8263df6811272dbe to your computer and use it in GitHub Desktop.
Save nielslange/a12915f10955f50c8263df6811272dbe to your computer and use it in GitHub Desktop.
<?php
function find_uniq($a) {
sort($a);
return ($a[0] === $a[1]) ? end($a) : current($a);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment