#354
The Map of shadows
 

Difficulty:Easy
Topics:Map


Dalam "Map of Shadows", elo dihadapkan pada tantangan untuk menciptakan bayangan setiap pasangan kunci-nilai. Untuk setiap kunci, tambahkan suffix -shadow dan duplikat nilainya.
test not run
(= (__ {:hero "Link" :item "Master Sword"}) {:hero "Link" :hero-shadow "Link" :item "Master Sword" :item-shadow "Master Sword"})
test not run
(= (__ {:a 1 :b 2}) {:a 1 :a-shadow 1 :b 2 :b-shadow 2})
test not run
(= (__ {}) {})
test not run
(= (__ {:key "value"}) {:key "value" :key-shadow "value"})


Code which fills in the blank: