oxalorg / oxalorg/4ever-clojure
Errors with problem 87 solutions
Open
Nobody has claimed this yet.
- Dominant language
- Clojure
- Stars
- 271
- Forks
- 29
- PR merge metrics
- No merged PRs in 30d
Description
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
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Open problem 87 from the linked 4clojure page and compare the three reported solution examples with the issue text. Correct the multiplication expression and add the two missing closing parentheses, then verify that all three examples are valid and match the intended solutions.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- clojure
- Domain
- content
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 35/100