#350
When you have the key you can replace the value
 

Difficulty:Elementary
Topics:Map


Mission: Bikin function untuk update nilai berdasarkan kunci di dalam map. Jika kunci tidak ditemukan, tambahkan kunci tersebut dengan nilai yang diberikan.
test not run
(= (__ {:a 1 :b 2} :b 3) {:a 1 :b 3})
test not run
(= (__ {:a 1 :b 2} :c 3) {:a 1 :b 2 :c 3})
test not run
(= (__ {} :a 1) {:a 1})


Code which fills in the blank: