#349
Uniquely sorted
 

Difficulty:Easy
Topics:List and vector functions


Mission: Bikin function yang menggabungkan dua list/vector, menghapus duplikat, dan mengembalikan list/vector yang sudah diurutkan dari elemen terkecil ke terbesar.
test not run
(= (__ [1 2 3 4] [3 4 5 6]) [1 2 3 4 5 6])
test not run
(= (__ ["a" "b"] ["b" "c" "d"]) ["a" "b" "c" "d"])
test not run
(= (__ [-1 2 0 3] [3 4 -1 5]) [-1 0 2 3 4 5])


Code which fills in the blank: