Solved


Size

1 year ago

Solved


Row avg

1 year ago

Solved


size

1 year ago

Solved


Real

1 year ago

Solved


Swap rows

1 year ago

Solved


NaN

1 year ago

Solved


area of a square
find the generic solution for an area of a square

1 year ago

Solved


Find the 9's Complement
Find the 9's complement of the given number. An example of how this works is <http://electrical4u.com/9s-complement-and-10s-c...

1 year ago

Solved


Merge two integers
We want to merge the digits of two integers having the same number of digits to obtain a new integer whose digits are obtained b...

1 year ago

Solved


Do you have the minimum age?

1 year ago

Solved


Replace with Lower
Given a list of integers, for each element, replace it with the minimum integer found in the sub-list to its strict right (exclu...

1 year ago

Solved


Find the largest sum of any contiguous subarray
Given an array of N integers, find the contiguous subarray (which must contain at least one number) with the maximum sum and ret...

1 year ago

Solved


modulus of a number
find the modulus of a given number

1 year ago

Solved


Halder function
Find the halder function value of a number

1 year ago

Solved


find a specific element from an matrix
Find the element from matrix which is in 2nd row and 3rd column.

1 year ago

Solved


multiply an array by its position number
You have given an array. Multiply an array by its position number

1 year ago

Solved


Determine whether the input is divisible by 3 as well as 5
If the input is divisible by 3 as well as 5 then the output should be 'true' otherwise 'false'

1 year ago

Solved


Calculating selling price
Cost of a Product is $x What should be the selling price if you want to gain 10%?

1 year ago

Solved


No more zeros
Given an array with zeros at the beginning or at the end, you should get the output without these zeros: input = [zeros(5...

1 year ago

Solved


concatenate the elements
you should concatenate the elements of a matrix in one dimensional array, for example if the input is A = [1 2 3; 4 5 6; 7 ...

1 year ago

Solved


determine the sum of the squares
if x = 4, the solution will be: y = 1^2+2^2+3^2+4^2=1+4+9+16 = 30.

1 year ago

Solved


Solve t^(a*x^2+b*x+c)=s
Solve t^(a*x^2+b*x+c)=s. Return x vector as result. Example a=1, b=2, c=1, t=3, s=15. Result x(1)= 0.5700 x(2)=-2.5700 H...

1 year ago

Solved


Find Euclidean norm of given vector u.
Find Euclidean norm of given vector u. https://en.wikipedia.org/wiki/Euclidean_distance Example x=[1 1] result=sqrt(1^2+1^2...

1 year ago

Solved


Sum positive elements of matrix.
Calculate sum of positive elements of the matrix.

1 year ago

Solved


Delete x value in given vector y.
Delete x value in given vector y. Exapmle x=5; y=[ 1 2 5 6 74 5 2 5] result=[1 2 6 74 2]

1 year ago

Solved


Add the positive numbers
Add only the positive numbers of x example: x = [-2 -1 0 1 2 3] the positive numbers are: 1 2 3, so their sum is 6

1 year ago

Solved


Sort by absolute value
Given a list of numbers, arrange them in ascending order based on their absolute values. For example, for the list [-30, -5, 1...

1 year ago

Solved


Sum of cubes
Write a program to determine sum of cubes of first n odd numbers.

1 year ago

Solved


Nth root
Nth root of a number x

1 year ago

Solved


Times 5
Try out this test problem first. Given the variable x as your input, multiply it by five and put the result in y. Examples...

1 year ago

Load more