(?) :: Int -> Int -> Int -- testing 60 combinations of argument values -- looking through 4 candidates of size 1 -- looking through 0 candidates of size 2 -- looking through 48 candidates of size 3 x ? y = x + y (?) :: Int -> Int -> Int -- testing 60 combinations of argument values -- looking through 4 candidates of size 1 -- looking through 0 candidates of size 2 -- looking through 48 candidates of size 3 x ? y = x * y i :: Int -> Int -- testing 60 combinations of argument values -- looking through 3 candidates of size 1 -- looking through 3 candidates of size 2 -- looking through 18 candidates of size 3 i x = x + 1 d :: Int -> Int -- testing 60 combinations of argument values -- looking through 3 candidates of size 1 -- looking through 3 candidates of size 2 -- looking through 18 candidates of size 3 cannot conjure