I get the error "Not in scope: x" when doing as follows...

blanks :: Sudoku -> [Pos]
blanks (Sudoku su) = [ fst x | x <- posSud | isBlank (snd x) ]
    where
    	isBlank Nothing = True
    	isBlank _		= False
    	posSud			= zip ixPos (concat su)
    	ixPos			= zip ixRows ixCols
    	ixCols			= concat (replicate 9 [0..8])
    	ixRows			= [floor (x / 9) | x <- [0..81]]

however, if I remove the guard of the 2:nd line GHCI compiles without giving me any errors.

Can you help me understand what I'm doing wrong?

link|improve this question

feedback

1 Answer

up vote 13 down vote accepted

try [ fst x | x <- posSud , isBlank (snd x) ]

link|improve this answer
6  
Just to highlight it for Mickel: comma, not vertical bar. Multiple vertical bars are used for parallel list comprehension, which is not what you want (and requires a language extension besides). – ephemient Nov 30 '09 at 23:07
Thank you guys! – Mickel Dec 1 '09 at 6:37
feedback

Your Answer

 
or
required, but never shown

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