Skip to content

Instantly share code, notes, and snippets.

@hiyorineko
Created November 30, 2019 14:17
Show Gist options
  • Save hiyorineko/e50da3abad8b6c48646097966589146f to your computer and use it in GitHub Desktop.
Save hiyorineko/e50da3abad8b6c48646097966589146f to your computer and use it in GitHub Desktop.
function isIsogram($string) {
foreach (range('a','z') as $let){
if (substr_count(strtolower($string), $let) > 1){return false;}
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment