From 56bd1aa93a7e1994bb0f30074cfa75c12ab59fe8 Mon Sep 17 00:00:00 2001 From: Peter Szalai Date: Mon, 23 Aug 2021 14:37:42 +0200 Subject: [PATCH] fix(easy_029): missing empty string as result --- src/rich4clojure/easy/problem_029.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rich4clojure/easy/problem_029.clj b/src/rich4clojure/easy/problem_029.clj index eb688c7..bbe8e69 100644 --- a/src/rich4clojure/easy/problem_029.clj +++ b/src/rich4clojure/easy/problem_029.clj @@ -17,8 +17,8 @@ (tests (__ "HeLlO, WoRlD!") := "HLOWRD" - (__ "nothing") := + (__ "nothing") := "" (__ "$#A(*&987Zf") := "AZ") ;; Share your solution, and/or check how others did it: -;; https://gist.github.com/bdbcf005bcae10b15531ebe3a7d0be9c \ No newline at end of file +;; https://gist.github.com/bdbcf005bcae10b15531ebe3a7d0be9c