Idem anterior:
En respuesta a Sandra Paganini Fajardo
Re: Segunda duda Autoevaluacion - Tipos
Complete la siguiente definición:
qux :: ((Int,Int), Bool, Int) -> Int qux ((x,_),y,z) = if y then fst x else z
Retroalimentación
Respuesta incorrecta.
La respuesta correcta es:
Complete la siguiente definición:
qux :: ((Int,Int), Bool, Int) -> Int qux [(x,y,z)] = if y then fst x else z
La opción incorrecta dice:
qux ((x,_),y,z) = if y then fst x else z
Observa el argumento. Qué tipo tiene (x,_)? Y ahora observa el valor que se devuelve. Qué tipo tiene fst x? Qué tipo tiene, entonces, (x,_)?
La opción correcta dice:
qux (x,y,z) = if y then fst x else z
Qué tipo tiene x?
luis
qux ((x,_),y,z) = if y then fst x else z
Observa el argumento. Qué tipo tiene (x,_)? Y ahora observa el valor que se devuelve. Qué tipo tiene fst x? Qué tipo tiene, entonces, (x,_)?
La opción correcta dice:
qux (x,y,z) = if y then fst x else z
Qué tipo tiene x?
luis