4ever-clojure icon indicating copy to clipboard operation
4ever-clojure copied to clipboard

Errors with problem 87 solutions

Open serk3ftin opened this issue 3 years ago • 6 comments

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

serk3ftin avatar Sep 14 '22 15:09 serk3ftin

yeah, i just ran into these issues also. no wonder there's no solutions in the solutions archive.

seebs avatar Dec 01 '22 04:12 seebs

@serk3ftin or @seebs do y'all have a working solution for this problem I can test with?

oxalorg avatar Jan 28 '23 15:01 oxalorg

@oxalorg Isn't that what PR #74 is for?

borkdude avatar Jan 28 '23 15:01 borkdude

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 :)

oxalorg avatar Jan 28 '23 15:01 oxalorg

Ah I see... The solutions archive doesn't have a solution for this one?

borkdude avatar Jan 28 '23 16:01 borkdude

Here's a link to my solution for problem 87, hope this helps 😸

seanstrom avatar Jan 28 '23 16:01 seanstrom