Question: by useing haskell defiine a function notdivisible::Int -> Int -> Bool that evaluates to True on input a and b if and only if a
by useing haskell defiine a function notdivisible::Int -> Int -> Bool that 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 expresssion into ghci: filter (\x -> notdivisible x 2) [0..100] represent the expression to understand what is happening.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
