Skip to content

Instantly share code, notes, and snippets.

@oktay-sen
Forked from qaisjp/tut2 ex4.hs
Created October 9, 2016 14:58
Show Gist options
  • Save oktay-sen/5452d21184a862ad96df2c912e031dd3 to your computer and use it in GitHub Desktop.
Save oktay-sen/5452d21184a862ad96df2c912e031dd3 to your computer and use it in GitHub Desktop.
lookUp :: Char -> [(Char, Char)] -> Char
lookUp needle xs = if (null selected) then needle else snd $ selected !! 0
where
selected = [x | x <- xs, fst x == needle]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment