Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this but I got an error:

-- test if a list contains exactly three characters
test :: [Char] -> Bool
test xs   | [_ , _ , _] = True
          | otherwise = False
share|improve this question
I have to say, I much prefer [_, _, _] to [_ , _ , _]. – MatrixFrog Mar 19 '10 at 21:10
What error have you got? – Matt Ellen Mar 19 '10 at 21:18
The answers here are more than what I asked for. THANK YOU. – kunj2aan Mar 19 '10 at 22:15

1 Answer

up vote 12 down vote accepted

Pattern matching happens on the left side of the vertical bar. Thus:

test :: [Char] -> Bool
test [_, _, _] = True
test _         = False

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:

test :: [Char] -> Bool
test xs = length xs == 3

Moreover, length xs == 0 should always be replaced with null xs.

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 n or the length of the list, whichever is smaller—and that's as efficient a solution, asymptotically, as we can possibly hope for:

hasLength :: Int -> [a] -> Bool
hasLength n []     = n == 0
hasLength 0 (x:xs) = False
hasLength n (x:xs) = hasLength (n-1) xs

Usage:

*Main> hasLength 3 [1..2]
False
*Main> hasLength 3 [1..3]
True
*Main> hasLength 3 [1..4]
False
*Main> hasLength 3 [1..] 
False

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 False with cost proportional to the length of the list. An easy fix would be to check in advance (on the first call only) that n is nonnegative, but this fix would ugly up the code.

share|improve this answer
Ugh! I was with you right up to the length example. It's too close to a classic beginner mistake: writing length xs == 0 instead of null xs. – Norman Ramsey Mar 19 '10 at 21:16
Or if you want to get fancy, I think the point-free form would be test = (3 ==) . length – MatrixFrog Mar 19 '10 at 21:20
@Norman: hmm, how is null going to help here? – Stephan202 Mar 19 '10 at 21:28
1  
@MatrixFrog: Please, no!!! @Stephan: null won't help with this problem. My point, which I failed to make clearly, is that many beginners use length when they should use either null or pattern matching. Encouraging length as a solution to this problem is to encourage programming with reckless disregard for costs, and programming that will fail on infinite lists. Your hasLength function, on the other hand, is more on the right track. I'm going to edit; if you don't like the edits, roll them back. If you do like them, drop length from your answer so I can upvote it :-) – Norman Ramsey Mar 19 '10 at 21:36
@Norman: thanks for the clarification! Feel free to edit and drop the reference to length. While you're at it, add import Data.List :) – Stephan202 Mar 19 '10 at 21:39
show 9 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.