Problem 980. Unique values without using UNIQUE function

You must return unique values in a vector in stable mode without using the unique function.
About stable order flag:
For example:
C = unique([5 5 3 4],'stable')
returns
C = [5 3 4].
The values are returned in the same order as in the original vector
Doc of the Unique function here.

Solution Stats

52.1% Correct | 47.9% Incorrect
Last Solution submitted on Mar 18, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers303

Suggested Problems

More from this Author30

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!