Given a cell string, produce a string separating the items with spaces and commas and with an 'and' preceding the final item, and ending with a full stop.
Input x = {'apples' 'oranges' 'pears' 'salmon'}
Output y = 'apples, oranges, pears and salmon.'
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers147
Suggested Problems
-
4780 Solvers
-
Project Euler: Problem 9, Pythagorean numbers
1385 Solvers
-
Back to basics 8 - Matrix Diagonals
966 Solvers
-
Convert from Base 10 to base 5
281 Solvers
-
245 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Needs more test cases, having arrays with more than 4 elements.