Problem 1755. Fix the last element of a cell array
Note: this is lifted directly from Puzzler for a Monday (on MATLAB Answers) by the cyclist.
----
Given a cell array of strings
A = {'MATLAB','HURRAY','SPARKLY','KITTENS','FUN'};and a particular string value
B = 'KITTENS';
ensure that B is the last element of the cell array. If it isn't, move it to the end of A.
You cannot assume that B appears at all (in which case return A unchanged), but you can assume B does not appear more than once.
So in the example,
C = {'MATLAB','HURRAY','SPARKLY','FUN','KITTENS'};
Solution Stats
Problem Comments
-
1 Comment
Solutions to light problems like this enable scaling up ideas to heavy, complex algorithms.
Solution Comments
Show commentsProblem Recent Solvers1747
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15773 Solvers
-
Calculate the Levenshtein distance between two strings
1506 Solvers
-
Make a vector of prime numbers
964 Solvers
-
Find last zero for each column
689 Solvers
-
Convert given decimal number to binary number.
2269 Solvers
More from this Author54
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!