Using a set would be more appropriate for your case (clojure.set/intersection #{1 2 3 4 5} #{3 2 7 8 10}). That will output #{2 3}.
確定! 回上一頁