Covering some basic topics I haven't seen elsewhere on Cody.
Return a cell array of all MATLAB keywords
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers469
Suggested Problems
-
Determine whether a vector is monotonically increasing
23438 Solvers
-
Find the alphabetic word product
3473 Solvers
-
500 Solvers
-
Try 1.5.4: Celsius to Fahrenheit
873 Solvers
-
07 - Common functions and indexing 3
427 Solvers
More from this Author39
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
It would be better if the solution didn't contain the answer. Also, in the problem statement you should probably specify that the keywords must be sorted alphabetically (and appear only once each). Otherwise a cell array such as {'if', 'for', 'else', ...} would satisfy the problem statement, but fail the Test Suite — as demonstrated in Solution 1329165.