rich4clojure icon indicating copy to clipboard operation
rich4clojure copied to clipboard

Some tests incomplete?

Open ergodicbreak opened this issue 3 years ago • 1 comments

Hi, again I may just be unfamiliar with hyperfiddle, but for example the problem 27 test is

(tests
  (__ '(1 2 3 4 5)) :=
  (__ "racecar") :=
  (__ [:foo :bar :foo]) :=
  (__ '(1 1 3 3 1 1)) :=
  (__ '(:a :b :c)) :=

Do these need to be fixed?

ergodicbreak avatar Nov 12 '22 00:11 ergodicbreak

I'm sorry. That's a bug in my script translating the problems. It should look like so:

(tests
  (__ '(1 2 3 4 5)) := false
  (__ "racecar") := true
  (__ [:foo :bar :foo]) := true
  (__ '(1 1 3 3 1 1)) := true
  (__ '(:a :b :c)) := false)

PEZ avatar Nov 12 '22 20:11 PEZ