Back to basics 2 - Function Path
Covering some basic topics I haven't seen elsewhere on Cody.
Given a string that is the name of a MATLAB function, return a s...
5 years ago
Solved
Combine the first and last names
MATLAB R2016 provides a rich set of functions to work with string arrays. In this problem, you will be given two string arrays o...
5 years ago
Solved
Guess Cipher
Guess the formula to transform strings as follows:
'Hello World!' --> 'Ifmmp Xpsme!'
'Can I help you?' --> 'Dbo J ifm...
5 years ago
Solved
Box!
Given a box, find the volume of the cube. With each side = a.
5 years ago
Solved
Wrapping the Tower of Pisa
The famous artist Christo Vladimirov Javacheff, who likes pizza, wants to wrap the well-known Italian tower in paper. It is a ci...
5 years ago
Solved
Matrix with different incremental runs
Given a vector of positive integers
a = [ 3 2 4 ];
create the matrix where the *i* th column contains the vector *1:a(i)...
5 years ago
Solved
Find last zero for each column
Given a numeric array of arbitrary size, return the row index of the last zero for each column. If a column contains all nonzero...