type Edad = Integertype Nombre = Stringtype Empleado = (Edad, Nombre)type Db = [Empleado]masJoven :: Db -> EmpleadomasJoven (x:[]) = xmasJoven (x:y:[]) = if (fst x) < (fst y) then x else ymasJoven (x:y:xs) = ¿?¿?¿¿??¿¿?¿?¿¿ =(
masJoven :: Db -> EmpleadomasJoven (x:[]) = xmasJoven (x:y:xs) = if (fst x) < (fst y) then masJoven (x:xs) else masJoven (y:xs)