Skip to content

Instantly share code, notes, and snippets.

View hussamkurd's full-sized avatar

Hussam El Kurd hussamkurd

View GitHub Profile
// PHP - Hussam Kurd
function firstNonRepeatingLetter($s)
{
return array_search(1, array_count_values(str_split($s)));
}