2
I made this function definition equal, which checks that all elements in a list are equal.
iguais :: [Float] -> Bool
iguais [x,y] = x == y
iguais (h:t) = h == (head t)
However the result is not the desired one. You can tell which is the error ?
That’s right @Carlosheuberger
– Gabriel