Given a list of integers, we want to keep only the non-unique elements in this list. To do this, we need to remove all the unique elements (elements that appear only once). The resulting list, denoted by C, must not change the order of the original list. Complete the function dupe(L) which returns the new list C.
Example:
- If L=[1,2,3,1,3] then C=[1,3,1,3]
- If L=[1,2,3,4,5] then C=[]
- If L=[5,5,5] then C=[5,5,5]
- If L=[10,9,10,10,9,8] then C=[10,9,10,10,9]
Solution Stats
Problem Comments
4 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers22
Suggested Problems
-
Determine whether a vector is monotonically increasing
22963 Solvers
-
How to find the position of an element in a vector without using the find function
2815 Solvers
-
Matrix indexing with two vectors of indices
776 Solvers
-
Determine the number of odd integers in a vector
828 Solvers
-
321 Solvers
More from this Author53
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Could I persuade you to use isempty() when the correct result is empty, rather than comparing to [] (which is 0-by-0 and will not match a 1-by-0 array)?
😊 You've convinced me! I'll start using isempty() when the correct result is empty. Thanks for the tip!
Thank you!
This feels like quite a deceptive question. Looks easy but gets tricky to work it out for larger inputs.