From 003d4581790e0a2f390bf93eca1c5055ded26db7 Mon Sep 17 00:00:00 2001 From: chenj7 Date: Wed, 8 Sep 2021 17:17:31 -0400 Subject: [PATCH] easy_47: Add test conditions --- src/rich4clojure/easy/problem_047.clj | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/rich4clojure/easy/problem_047.clj b/src/rich4clojure/easy/problem_047.clj index 3313059..e8fc57c 100644 --- a/src/rich4clojure/easy/problem_047.clj +++ b/src/rich4clojure/easy/problem_047.clj @@ -17,10 +17,10 @@ ) (tests - #{4 5 6} := __ - [1 1 1 1 1] := __ - {4 :a 2 :b} := __ - (contains? [1 2 4] __) :=) + (contains? #{4 5 6} __) := true + (contains? [1 1 1 1 1] __) := true + (contains? {4 :a 2 :b} __) := true + (contains? [1 2 4] __) := false) ;; Share your solution, and/or check how others did it: -;; https://gist.github.com/cbcede67c0c350f7d800b078a5c0f525 \ No newline at end of file +;; https://gist.github.com/cbcede67c0c350f7d800b078a5c0f525