Problem 53. Duplicates
Write a function that accepts a cell array of strings and returns another cell array of strings with only the duplicates retained.
Examples:
Input strs = {'a','b','a'} Output dups is 'a'
Input strs = {'a','b','c'} Output dups is Empty cell array: 0-by-1
Solution Stats
Problem Comments
-
4 Comments
Why not just an isequal(correct,result) in the tests?
Consequently, a lot of solutions leave duplicates in the result.
How should higher multiplets be treated?
güzell
%%
Useful function => unique, countcats, categorical
Solution:
https://github.com/AhmedNazir/MatlabCody/blob/master/duplicates.m
Solution Comments
Show commentsProblem Recent Solvers2313
Suggested Problems
-
Project Euler: Problem 8, Find largest product in a large string of numbers
1100 Solvers
-
Basic electricity in a dry situation
557 Solvers
-
Replace multiples of 5 with NaN
440 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
378 Solvers
-
726 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!