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
Solution Comments
Show comments
Loading...
Problem Recent Solvers2424
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6821 Solvers
-
Find relatively common elements in matrix rows
2158 Solvers
-
Project Euler: Problem 1, Multiples of 3 and 5
3723 Solvers
-
Duplicate each element of a vector.
639 Solvers
-
Relative ratio of "1" in binary number
1665 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!
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