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

3 lines
41 B
R
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
items <- c(1,2,3,2,4,3,2)
unique (items)