Solved


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

3 years 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.

3 years ago

Solved


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

3 years ago

Solved


Find Logic 17

3 years ago

Solved


Find Logic 3

3 years ago

Solved


Find Logic 1

3 years ago

Solved


Find Logic 10

3 years ago

Solved


Find Logic 8

3 years ago

Solved


Find Logic 13

3 years ago

Solved


Find Logic 15

3 years ago

Solved


10% Discount

3 years ago

Solved


Find Logic 16

3 years ago

Solved


Find Logic 6

3 years ago

Solved


Find Logic 9

3 years ago

Solved


Find Logic 7

3 years ago

Solved


Find Logic 11

3 years ago

Solved


Find Logic 12

3 years ago

Solved


Set the array elements whose value is 13 to 0
Input A either an array or a vector (which can be empty) Output B will be the same size as A . All elements of A equal to 13...

3 years ago

Solved


Number of Even Elements in Fibonacci Sequence
Find how many even Fibonacci numbers are available in the first d numbers. Consider the following first 14 numbers 1 1 2...

3 years ago

Solved


Write a code that will follow the equation y = x * (x + x) * x.
If x = 5, y = 5 * (5+5) * 5 = 250

3 years ago

Solved


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<https://i.imgur.com/jlZDHhq.png>> Image courtesy of <http://up...

3 years ago

Solved


Divide by 4
Given the variable x as your input, divide it by 4 and put the result in y.

3 years ago

Solved


Find Logic 14

3 years ago

Solved


Calculate Resistance
Calculate Resistance R of a linear conductor having resistivity p, length l and area A

3 years ago

Solved


Find Logic 4

3 years ago

Solved


Find Logic 18

3 years ago

Solved


Find Logic 19

3 years ago

Solved


Will there be a new leader?
Simply answer the title.

3 years 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 ...

3 years ago

Solved


Sum the Digits of a Number
Given an integer, sum the digits repeatedly until you end up with a single value less than 10. For example, if you add the di...

3 years ago

Load more