I have this but I got an error:
-- test if a list contains exactly three characters
test :: [Char] -> Bool
test xs | [_ , _ , _] = True
| otherwise = False
|
Pattern matching happens on the left side of the vertical bar. Thus:
As Norman Ramsey rightly notes below, the following code is not a robust alternative solution (because it is very inefficient when applied to (long) finite lists and does not halt on infinite lists) and should thus not be used:
Moreover, Edit: the question which naturally arises is: how do we generalize this? What if we want to test whether a list has exactly n elements? What if the input may be infinite?
Here's a solution where the cost is either
Usage:
It is unsafe to call this function with a negative length; if the list is infinite, the function won't terminate, and if the list is finite, it will return |
|||||||||||||
|
[_, _, _]to[_ , _ , _]. – MatrixFrog Mar 19 '10 at 21:10