RosettaCodeData/Task/Remove-duplicate-elements/R/remove-duplicate-elements.r

3 lines
41 B
R
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
items <- c(1,2,3,2,4,3,2)
unique (items)