Duplicates - MATLAB Cody - MATLAB Central

Problem 53. Duplicates

Difficulty:Rate

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

60.56% Correct | 39.44% Incorrect
Last Solution submitted on May 06, 2025

Problem Comments

Solution Comments

Show comments
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
2
3

Problem Recent Solvers2363

Suggested Problems

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!
Go to top of page