Solved


Perimeter of a semicircle
Given the diameter d, find the perimeter of a semicircle

6 months ago

Solved


Volume Pillar
Calculate the volume of a pillar with radius l and heigth ar.

6 months ago

Solved


Convert radians to degrees
Given input in radians, output to degrees

6 months ago

Solved


De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if a =...

6 months ago

Solved


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...

6 months ago

Solved


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

6 months ago

Solved


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

6 months 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 ...

6 months ago

Solved


Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...

6 months ago