Solved


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

8 years ago

Solved


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

8 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

8 years ago

Answered
Compute the product of the next n elements in matrix
This should work. has been tested and refined: function B = maxproduct(A,n) % After checking that we do not have to retu...

8 years ago | 1

Answered
How can I solve this problem?
This should work perfectly: function mul = smallest_multiple(n) facts = zeros(1,n); % store the exponents ...

8 years ago | 2

Solved


Add two numbers
Given a and b, return the sum a+b in c.

8 years ago

Answered
Hey Guys can you help me with that.
I think this is the most elegant solution that takes care of all exceptions. Apologies if it has been covered in the past: ...

8 years ago | 1