4ever-clojure
4ever-clojure copied to clipboard
Errors with problem 87 solutions
In problem 87:
(= (__ 3 4 5 60) '(= (+ (* 3 4) 5) 60))
should be:
(= (__ 3 4 5 60) '(= (* 3 4 5) 60))
and the last two:
(= (__ 1 2 10 100 2001) '(= (+ 1 (* 2 10 100)) 2001)
(= (__ 1 2 10 100 1300) '(= (* (+ 1 2 10) 100) 1300)
are missing an ending parenthesis
yeah, i just ran into these issues also. no wonder there's no solutions in the solutions archive.
@serk3ftin or @seebs do y'all have a working solution for this problem I can test with?
@oxalorg Isn't that what PR #74 is for?
Sorry I meant a working code solution for this problem so I can test the #74 PR! I guess I can spend some time going through the problem and coming up with a function :)
Ah I see... The solutions archive doesn't have a solution for this one?
Here's a link to my solution for problem 87, hope this helps 😸