Given a list of names in a cell array, remove any duplications that result from different capitalizations of the same string. So if
names_in = {'bert','arthur','Bert','Fred'};the
names_out = clean_list(names_in)
results in
names_out = {'bert','arthur','Fred'};Always take the first occurrence of the duplicated string
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers1797
Suggested Problems
-
Project Euler: Problem 10, Sum of Primes
2122 Solvers
-
1366 Solvers
-
Get the length of a given vector
13484 Solvers
-
Flip the vector from right to left
11190 Solvers
-
2084 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!
I used lower() and unique().Runs fine on my R2010a version. shows error here.