You are viewing a single comment's thread. Return to all comments →
PHP easy solution Migratory Birds
function migratoryBirds($arr) { $counts = array_count_values($arr); ksort($counts); arsort($counts); return array_key_first($counts); }
Seems like cookies are disabled on this browser, please enable them to open this website
Migratory Birds
You are viewing a single comment's thread. Return to all comments →
PHP easy solution Migratory Birds