Determine if all elements are odd
Given an array, return true if all of the elements are odd.
ex.
x = [3 4 1]
allOdd(x)
ans = false
ex.
x = [3 5 7;
5 9...
Swap Characters of a Single Word
Description:
In the given input word, convert the lower case to upper case and vice versa.
A to a, a to A ...
Example:
'Matl...