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
-
6307 Solvers
-
Determine Whether an array is empty
781 Solvers
-
Set the array elements whose value is 13 to 0
1375 Solvers
-
367 Solvers
-
43 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!