RosettaCodeData/Task/Remove-duplicate-elements/Octave/remove-duplicate-elements.octave

3 lines
68 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
input=[1 2 6 4 2 32 5 5 4 3 3 5 1 2 32 4 4];
output=unique(input);