#334
You are replaceable
 

Difficulty:Elementary
Topics:String


Mission: Bikin function untuk replace karakter tertentu dalam string dengan karakter lain. Argumen pertama character yg mau diganti, argumen kedua adalah character penggantinya. Jangan lupa ada clojure.string library untuk string manipulation.
test not run
(= (__ "hello world" "o" "0") "hell0 w0rld")
test not run
(= (__ "clojure rocks" "o" "0") "cl0jure r0cks")
test not run
(= (__ "functional programming" "n" "-") "fu-ctio-al programmi-g")


Code which fills in the blank: