Gelöst


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

mehr als 2 Jahre vor

Gelöst


Fibonacci-Sum of Squares
Given the Fibonacci sequence defined by the following recursive relation, * F(n) = F(n-1) + F(n-2) * where F(1) = 1 and F(1)...

mehr als 2 Jahre vor

Gelöst


remove every row&col for every nan
for a given matrix, remove the row and column of every nan. Example x=[1 2 NaN 4 5 6 7 8 ...

mehr als 2 Jahre vor

Gelöst


Remove entire row and column in the matrix containing the input values
Remove the entire row and column from the matrix containing specific values. The specified value can be a scalar or a vector. Fo...

mehr als 2 Jahre vor

Gelöst


Column Removal (★★★)
(copy of prob 7) Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2...

mehr als 2 Jahre vor

Gelöst


Remove all the columns contains only zero
Remove the column from the matrix which has only zeros . Refer the Example below a= 1 0 3 0 23 0 56 0 1 ...

mehr als 2 Jahre vor

Gelöst


row removal
Consider a matrix and remove the first row of the matrix.

mehr als 2 Jahre vor

Gelöst


Remove a specific column with min value
Remove the column that contain the min value in the matrix?

mehr als 2 Jahre vor

Problem


Remove a specific column with min value
Remove the column that contain the min value in the matrix?

mehr als 2 Jahre vor | 5 | 342 Lösungsvorschläge

Gelöst


Remove a specific column with max value
Remove the column that contain the max value in the matrix?

mehr als 2 Jahre vor

Problem


Remove a specific column with max value
Remove the column that contain the max value in the matrix?

mehr als 2 Jahre vor | 4 | 343 Lösungsvorschläge

Gelöst


Remove a specific row with max value
Remove the row that contain the max value in the matrix?

mehr als 2 Jahre vor

Gelöst


Remove a specific row with min value
Remove the row that contain the min value in the matrix?

mehr als 2 Jahre vor

Problem


Remove a specific row with min value
Remove the row that contain the min value in the matrix?

mehr als 2 Jahre vor | 6 | 353 Lösungsvorschläge

Problem


Remove a specific row with max value
Remove the row that contain the max value in the matrix?

mehr als 2 Jahre vor | 9 | 387 Lösungsvorschläge

Gelöst


Find mass of single floor in building
A model building has three floors are highlighted in different colours here: Assu...

mehr als 2 Jahre vor

Gelöst


Summation of Non Zeros Numbers in String Variable
Find the Summation of Non Zeros Numbers in String Variable The input : x = '100205' The Output : y = 8

mehr als 2 Jahre vor

Gelöst


String Logic 5
Example: 'CAT' --> 'TAC' 'DOG' --> 'GOD' 'MATLAB' --> 'BALTAM' 'ROSY' --> 'YSOR' 'TRUST' --> 'TSURT' 'MOSTLY' --> 'YLTS...

mehr als 2 Jahre vor

Gelöst


String Logic 10
Examples: 'SUNDAY' --> 83 'MONDAY' --> 77 'TUESDAY' --> 84 'WEDNESDAY' --> 87 'THURSDAY' --> 84 'FRIDAY' --> 70 'SATURD...

mehr als 2 Jahre vor

Gelöst


String Logic 1
Examples: 'CAT' --> 'IGZ' 'DOG' --> 'JUM'

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


Return the Fibonacci Sequence
Write a code which returns the Fibonacci Sequence such that the largest value in the sequence is less than the input integer N. ...

mehr als 2 Jahre vor

Gelöst


Mersenne Primes
A Mersenne prime is a prime number of the form M = 2^p - 1, where p is another prime number. For example, 31 is a Mersenne prim...

mehr als 2 Jahre vor

Gelöst


Mersenne Primes vs. All Primes
A Mersenne prime (M) is a prime number of the form M = 2^p - 1, where p is another prime number. <https://www.mathworks.com/matl...

mehr als 2 Jahre vor

Gelöst


Approximation of Pi (vector inputs)
Pi (divided by 4) can be approximated by the following infinite series: pi/4 = 1 - 1/3 + 1/5 - 1/7 + ... For a given numbe...

mehr als 2 Jahre vor

Gelöst


Project Euler: Problem 10, Sum of Primes
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below the input, N. Thank you <http:/...

mehr als 2 Jahre vor

Gelöst


Project Euler: Problem 6, Natural numbers, squares and sums.
The sum of the squares of the first ten natural numbers is, 1^2 + 2^2 + ... + 10^2 = 385 The square of the sum of the first ...

mehr als 2 Jahre vor

Gelöst


Project Euler: Problem 1, Multiples of 3 and 5
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23...

mehr als 2 Jahre vor

Gelöst


Calculate the height of an object dropped from the sky
Assume that an object is dropped from 1000 meters above the surface of the earth at time t=0. The object is dropped such that t...

mehr als 2 Jahre vor

Gelöst


Find the Pattern 4

mehr als 2 Jahre vor

Mehr laden