Sua função receberá duas funções, f e g, que não aceitam nenhum parâmetro. Sua função deve chamá-las e retornar uma string que indique qual função retornou o maior número.
f retornar o maior número, retorne a string f.g retornar o maior número, retorne a string g.neither.larger({5}, {10}) ➞ "g"
larger({25}, {25}) ➞ "neither"
larger({505050}, {5050}) ➞ "f"Este exercício foi criado como uma introdução a funções de ordem superior (funções que usam outras funções para realizar seu trabalho).