Problem 298. No Twins?
Write a function that accepts as input a vector and returns the same vector, but retaining only the first occurrence of an element whenever there is consecutive repetition of this element.
Example:
in -> [1 2 2 2 3 4 4 3 5] out-> [1 2 3 4 3 5]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers270
Suggested Problems
-
27449 Solvers
-
2364 Solvers
-
496 Solvers
-
Make a run-length companion vector
655 Solvers
-
find the maximum element of the matrix
532 Solvers
More from this Author10
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!