Skip to content

Instantly share code, notes, and snippets.

@nielslange
Last active February 24, 2020 08:02
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/104accb4ea87f90aef2a944247f35aa1 to your computer and use it in GitHub Desktop.
Save nielslange/104accb4ea87f90aef2a944247f35aa1 to your computer and use it in GitHub Desktop.
<?php
function find_uniq(array $array): int {
sort($array);
if ( $array[0] === $array[1] ) rsort($array);
return $array[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment