RosettaCodeData/Task/Remove-duplicate-elements/Lasso/remove-duplicate-elements.lasso
2023-07-01 13:44:08 -04:00

6 lines
149 B
Text

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)