Problem 55870. Remove Repetidos e Ordena
Dado um vetor A, remove todos os valores repetidos deixando apenas 1 valor, e ordene o vetor.
RemoveRepetidosEOrdena([1 1 2 3]) = [1 2 3];
RemoveRepetidosEOrdena([5 4 8 5 5 6 4 2]) = [2 4 5 6 8];
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers51
Suggested Problems
-
Which values occur exactly three times?
5149 Solvers
-
Duplicate each element of a vector.
618 Solvers
-
Calculate distance travelled when given radius and rotations
228 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
383 Solvers
-
222 Solvers
More from this Author20
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!