Question: Define a function notdivisible :: Int -> Int -> Bool hat evaluates to True on input a and b if and only if a is
Define a function notdivisible :: Int -> Int -> Bool hat evaluates to True on input a and b if and only if a is not divisible by b (in particular, if b == 0 ). Test this function by entering the following expression into ghci:
filter (\x -> notdivisible x 2) [0. .100]
play with the expression in order to understand whats is happening
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
