given a list as list_nums , take up to n + 1 then from that return the last element which is nth . (fn [list_nums n] (last (take (inc n) ...
確定! 回上一頁