Last active
May 15, 2018 04:55
-
-
Save varreli/ab982f58f0cec59ff5f073bbbe58eca2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ShowExpression | |
subs :: [a] -> [[a]] | |
subs [] = [[]] | |
subs (x:xs) = yss ++ map (x:) yss | |
where yss = subs xs | |
interleave :: a -> [a] -> [[a]] | |
interleave x [] = [[x]] | |
interleave x (y:ys) = (x:y:ys) : map (y:) (interleave x ys) | |
perms :: [a] -> [[a]] | |
perms [] = [[]] | |
perms (x:xs) = concat (map (interleave x) (perms xs)) | |
choices :: [a] -> [[a]] | |
choices = concat . map perms . subs -- do perms $ [[list]] | |
-- choices xs = concat . map perms . subs $ xs | |
solution :: Expr -> [Int] -> Int -> Bool | |
solution e nums n = elem (values e) (choices nums) | |
&& eval e == [n] | |
-- λ > solution (App Mul (App Add (Val 50) (Val 1)) (App Sub (Val 25) (Val 10))) [1,3,7,10,25,50] 765 | |
-- True | |
split :: [a] -> [([a], [a])] | |
split [] = [] | |
split [_] = [] | |
split (x:xs) = ([x], xs) : [(x:ls, rs) | (ls, rs) <- split xs] | |
-- auxillary function combine in exprs: | |
combine :: Expr -> Expr -> [Expr] | |
combine l r = [App o l r | o <- ops] | |
ops :: [Op] | |
ops = [Add,Sub,Mul,Div] | |
-- | |
exprs :: [Int] -> [Expr] | |
exprs [] = [] | |
exprs [n] = [Val n] | |
exprs ns = [ e | (ls, rs) <- split ns, | |
l <- exprs ls, | |
r <- exprs rs, | |
e <- combine l r] | |
solutions :: [Int] -> Int -> [Expr] | |
solutions ns n = | |
[e | ns' <- choices ns, e <- exprs ns', eval e == [n]] | |
-- auxiliary function for results ---------------- | |
type Result = (Expr, Int) | |
combine' :: Result -> Result -> [Result] | |
combine' (l, x) (r, y) = | |
[(App o l r, apply o x y) | o <- ops, valid o x y] | |
-------------------------------------------------- | |
results :: [Int] -> [Result] | |
results [] = [] | |
results [n] = [(Val n, n) | n > 0] | |
results ns = [res | (ls,rs) <- split ns, | |
lx <- results ls, | |
ry <- results rs, | |
res <- combine' lx ry] | |
main :: IO () | |
main = print (results [1, 3, 7]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment