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 Solvers50
Suggested Problems
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2141 Solvers
-
Remove element(s) from cell array
1542 Solvers
-
Element by element multiplication of two vectors
373 Solvers
-
Replace 0 indices in array with 1's
115 Solvers
-
377 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!