Risolto


'Price of pizza!'
If you want to check pizza's price, try this! price is proportional to its volume, so you have to multiply 0.1($) to pizza's v...

quasi 10 anni fa

Risolto


Pairwise column flip
Given matrix *M_in*, flip every pair of columns. So if *M_in* is 1 2 3 4 1 2 3 4 then *M_out* is 2 1 4 3 2 1 4 3 ...

quasi 10 anni fa

Risolto


Implement a bubble sort technique and output the number of swaps required
A bubble sort technique compares adjacent items and swaps them if they are in the wrong order. This is done recursively until al...

quasi 10 anni fa

Risolto


Find last zero for each column
Given a numeric array of arbitrary size, return the row index of the last zero for each column. If a column contains all nonzero...

quasi 10 anni fa

Risolto


Return the length of the longest word in the string.
Example: Input s='A fractal is a natural phenomenon or a mathematical set that exhibits a repeating pattern that display...

quasi 10 anni fa

Risolto


create a square matrix
create a [n*n] matrix. example: mat(4)= [ 1 4 9 16 4 4 9 16 9 9 ...

quasi 10 anni fa

Risolto


Flipping a Matrix
Flipping matrix up and down. If a central row is exists, leave it, and flip remaining rows. Example Mat = magic(3) ...

quasi 10 anni fa

Risolto


Where is the number that you want to find?
For a given matrix A, find where the input number x appears. Do this task by returning the vector which contains the row and th...

quasi 10 anni fa

Risolto


Select primes from the matrix.
Select primes from the matrix.

quasi 10 anni fa

Risolto


Create vector as shown in test cases
Create vector as shown in test cases

quasi 10 anni fa

Risolto


Logarithm with base other than 'e'
Standard log() function returns natural logarithm with base equal to Euler constant. Compute logarithm for a given base.

quasi 10 anni fa

Risolto


Number of nonzero elements in matrix
Calculate the number of nonzero elements for given matrix

quasi 10 anni fa

Risolto


My cat likes strings!!
Create a string of specified length or more. It's that simple!

quasi 10 anni fa

Risolto


Solve the system of equations.
_Ax=b_ * _A_ - square coefficient matrix * _b_ - right side column vector Find vecor _x_.

quasi 10 anni fa

Risolto


Sort rows of a matrix
Sort rows of matrix A in an ascending order according to the last column Example input: A = [1 2 3;7 8 9;4 5 6]; Exam...

quasi 10 anni fa

Risolto


What does the "B" in Benoit B Mandelbrot stand for?
Tip https://en.wikipedia.org/wiki/Mandelbrot_set

quasi 10 anni fa

Risolto


Counting candies
In a classroom of |'n'| children, every even numbered child gets one big candy and every odd numbered child gets two small candi...

quasi 10 anni fa

Risolto


Find product of eigenvalues of n*n magic matrix.
Find product of eigenvalues of n*n magic matrix. Example n=3 Matrix= [ 8 1 6; 3 5 7; 4 ...

quasi 10 anni fa

Risolto


Get linearly independent vectors of given matrix.
Get linearly independent vectors of given matrix. Example matrix=[ 3 -1 0 0 ; 0 3 0 0...

quasi 10 anni fa

Risolto


Pad zero between every adjacent values of the vector.
you are given a vector x. you have to make an output vector y with zeros padded between every adjacent values of x. e.g x: ...

quasi 10 anni fa

Risolto


Repeat the entries of the vector to their reference times in the vector.
e.g for input x: [ 7 3 9 5] output y: [ 7 3 3 9 9 9 5 5 5 5]

quasi 10 anni fa

Risolto


Unit conversion
Convert x degree Celsius to y degree Fahrenheit.

circa 10 anni fa

Risolto


Square root of a number
Write a code that will output the square root of x.

circa 10 anni fa

Risolto


Find the qube of a give number.
You are given a number, find the qube of that number.

circa 10 anni fa

Risolto


modulus of a number
find the modulus of a given number

circa 10 anni fa

Risolto


Halder function
Find the halder function value of a number

circa 10 anni fa

Risolto


find max
You are given an array number find the maximum

circa 10 anni fa

Risolto


find minimum
find the minimum from an array

circa 10 anni fa

Risolto


find sum of the numbers in array
calculate the sum of numbers in a given array

circa 10 anni fa

Risolto


Find mean
given an array, find the mean of the number in that array

circa 10 anni fa

Carica altro