mirror of
https://github.com/correl/elm.git
synced 2024-11-15 19:19:31 +00:00
30 lines
557 B
Elm
30 lines
557 B
Elm
module Allergies exposing (..)
|
|
|
|
import List
|
|
import Bitwise
|
|
|
|
|
|
isAllergicTo : String -> Int -> Bool
|
|
isAllergicTo name score =
|
|
List.member name (toList score)
|
|
|
|
|
|
toList : Int -> List String
|
|
toList score =
|
|
allergies
|
|
|> List.indexedMap (\i n -> ( Bitwise.shiftLeftBy i 1, n ))
|
|
|> List.filter (\( s, n ) -> Bitwise.and s score > 0)
|
|
|> List.map Tuple.second
|
|
|
|
|
|
allergies : List String
|
|
allergies =
|
|
[ "eggs"
|
|
, "peanuts"
|
|
, "shellfish"
|
|
, "strawberries"
|
|
, "tomatoes"
|
|
, "chocolate"
|
|
, "pollen"
|
|
, "cats"
|
|
]
|