RosettaCodeData/Task/Remove-duplicate-elements/Lasso/remove-duplicate-elements.lasso

7 lines
149 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
local(
x = array(3,4,8,1,8,1,4,5,6,8,9,6),
y = array
)
with n in #x where #y !>> #n do => { #y->insert(#n) }
// result: array(3, 4, 8, 1, 5, 6, 9)