Solved


Basic arrays operations.
Apply element-by-element binary operation 'fun' to two arrays (A and B).

9 months ago

Solved


Celsius to Kelvin
Convert Celsius degrees to Kelvin temperature.

9 months ago

Solved


Fahrenheit to Celsius converter
Convert Fahrenheit to Celsius degrees.

9 months ago

Solved


Draw a '8' in a zero matrix!

9 months ago

Solved


Mass Conversion 1

9 months ago

Solved


num to char
make num into char

9 months ago

Solved


Prime Number
Determine if a number is prime

9 months ago

Solved


Remainder
Given two number a and b find the remainder when you divide a by b

9 months ago

Solved


Add two numbers
Given two numbers a and b add them together

9 months ago

Solved


Subtraction
Given two numbers a and b subtract them

9 months ago

Solved


Division
Given two numbers a and b divide them a/b

9 months ago

Solved


Multiplication
Given 2 numbers a and b mulitply them

9 months ago

Solved


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

9 months ago

Solved


Find max
Find the maximum value of a given vector or matrix.

9 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 ...

9 months ago

Solved


Convert from Fahrenheit to Celsius
Given an input vector F containing temperature values in Fahrenheit, return an output vector C that contains the values in Celsi...

11 months ago

Solved


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

11 months ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

11 months ago