已解决


Double the length of the vector

1 year 前

已解决


Simple String Concatenation
This is a simple problem involving taking two incoming strings, and outputting the concatenated string with a space separating t...

1 year 前

已解决


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 前

已解决


Sum two matrices
Take two incoming matrices, and sum them

1 year 前

已解决


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 前

已解决


Increment up an input vector
Increment up an input vector by adding the indices to the vector values. For example, if an input vector is [3, 2, 6, 1, 6], the...

1 year 前

已解决


Automatic String Editing
In this function, you will take an incoming string, and output the same string with each character one letter later in the alpha...

1 year 前

已解决


Linear Motion 4
A robot accelerates at a rate of A ft/s2. Assuming the robot starts from rest how much time is required to reach an object loca...

1 year 前

已解决


Weave two matrices together to form one matrix
Take the first column from matrix a, then insert the first column from matrix b, and so on. For example: a = [1 2 3 4]; b ...

1 year 前

已解决


Decide whether determinant is zero.
Given a 3 x 3 matrix, find the determinant. Let y = true if the determinant is zero, and let y = false if the determinant is no...

1 year 前

已解决


Sum of integers numbers
Sum of the numbers from 1 to 100

1 year 前

已解决


Finding an element in a vector
x is a vector of unknown length your function should return the index of the first element in the vector that is greater than...

1 year 前

已解决


How to get the additive inverse of a uint8.
Given x as a uint8 find the additive inverse y.

1 year 前

已解决


String Logic 8
Example: 'CAT' --> 65 'DOG' --> 68 'ROSY' --> 79 'MATLAB' --> 65 'TRUST' --> 82 'MOSTLY' --> 76

1 year 前

已解决


String Logic 18
Examples: 'DIG' --> 'DG' 'IMPORTANT' --> 'IPRAT' 'DEAL' --> 'DA' 'LIMB' --> 'LM' 'MOSTLY' --> 'MSL'

1 year 前

已解决


String Logic 12
Examples: 'CAT' --> 'ACT' 'DOG' --> 'DGO' 'ROSY' --> 'ORSY' 'MOSTLY' --> 'LMOSTY'

1 year 前

已解决


Find the number of primes less than input
Given an integer n, determine the number of primes less than or equal to n.

1 year 前

已解决


Can you reshape the matrix?
Given a matrix A, is it possible to reshape it into another matrix with the given number of rows?

1 year 前

已解决


Matrix Max Finder
Output the maximum value in a matrix

1 year 前

已解决


Congruent
Given two numbers, check whether they are congruent to each other or not for a particular value N.

1 year 前

已解决


Determine whether the number is multiple of 3 or not
Let a=6 and as 6 = 2*3 which means 6 is multiple of 3; return true if a is multiple of 3,otherwise false.

1 year 前

已解决


Percentage profit
If you are buying at x dollar, what will be the selling price for making the r% profit?

1 year 前

已解决


metre to feet converter
The idea is to make a converter, which exchange meters to feets. We use a factor of 1m = 3.281*1f. so 3m are equals to 9.843 m...

1 year 前

已解决


Create a square matrix of zeros of even order
Create a square matrix of zeros of even order

1 year 前

已解决


find the value

1 year 前

已解决


Summy's odd sum

1 year 前

已解决


Kelvin to Fahrenheit
You can find a doc about it in here => https://www.rapidtables.com/convert/temperature/how-kelvin-to-fahrenheit.html x is kelvi...

1 year 前

已解决


Set x value to each odd index of vector y.
Set x value to each odd index of vector y.

1 year 前

已解决


Sort in descending order.

1 year 前

加载更多