Problem


Calculate the sum of first x natural numbers
Calculate the sum of first x natural numbers for example if n=10 output =1+2+..+10=55

mehr als 2 Jahre vor | 0 | 16 Lösungsvorschläge

Gelöst


Find Air Temperature from Cricket Stridulation Rate
Stridulation is the process that creates a cricket's “chirp” by rubbing their wings or legs. According to the Old Farmer's Alma...

mehr als 2 Jahre vor

Gelöst


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


Create a vector
Create a vector from 0 to n by intervals of 2.

mehr als 2 Jahre vor

Gelöst


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

mehr als 2 Jahre vor

Gelöst


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

mehr als 2 Jahre vor

Gelöst


Inner product of two vectors
Find the inner product of two vectors.

mehr als 2 Jahre vor

Gelöst


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

mehr als 2 Jahre vor

Gelöst


Energy Conversion 2

mehr als 2 Jahre vor

Gelöst


Energy Conversion 1

mehr als 2 Jahre vor

Gelöst


Velocity Conversion
Given a velocity in mph, convert it to km/h. Round the answer to the fourth decimal place.

mehr als 2 Jahre vor

Gelöst


Area Conversion 2

mehr als 2 Jahre vor

Gelöst


Area Conversion 1

mehr als 2 Jahre vor

Gelöst


Mass Conversion 2

mehr als 2 Jahre vor

Gelöst


Mass Conversion 1

mehr als 2 Jahre vor

Gelöst


Temperature Conversion 3
Given a temperature in Celcius, convert it to Fahrenheit.

mehr als 2 Jahre vor

Gelöst


Temperature Conversion 2

mehr als 2 Jahre vor

Gelöst


Temperature Conversion 1

mehr als 2 Jahre vor

Gelöst


Total energy

mehr als 2 Jahre vor

Gelöst


Potential energy calculation

mehr als 2 Jahre vor

Gelöst


Kinetic energy calculation

mehr als 2 Jahre vor

Gelöst


Laws of motion 1

mehr als 2 Jahre vor

Gelöst


Laws of motion 2

mehr als 2 Jahre vor

Gelöst


Laws of motion 4
Given the initial velocity 'u', final velocity 'v' and acceleration 'a', find the distance travelled.

mehr als 2 Jahre vor

Gelöst


Laws of motion 5

mehr als 2 Jahre vor

Gelöst


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.

mehr als 2 Jahre vor

Gelöst


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

mehr als 2 Jahre vor

Mehr laden