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
Show
1 older comment
Erik Zdansky
on 7 Feb 2016
How should higher multiplets be treated?
mehmet muhammet cesur
on 8 Jun 2020
güzell
Ahmed Nazir
on 1 Oct 2020
%%
Useful function => unique, countcats, categorical
Solution:
https://github.com/AhmedNazir/MatlabCody/blob/master/duplicates.m
Solution Comments
Show commentsProblem Recent Solvers2355
Suggested Problems
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2325 Solvers
-
How many trades represent all the profit?
605 Solvers
-
Set the array elements whose value is 13 to 0
1381 Solvers
-
814 Solvers
-
Flip the vector from right to left
9576 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!