#340
Pecking order
 

Difficulty:Elementary
Topics:List Vector


Mission: Bikin function untuk masukin elemen di posisi tertentu dalam list/vector.
test not run
(= (__ 2 "a" [1 2 3 4]) [1 2 "a" 3 4])
test not run
(= (__ 0 "Clojure" ["Scala" "Haskell"]) ["Clojure" "Scala" "Haskell"])
test not run
(= (__ 1 false [true true]) [true false true])


Code which fills in the blank: