Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 20;
m = 5;
total = 190;
assert(isequal(no_digit_sum(n,m),total))
|
2 | Pass |
n = 10;
m = 5;
total = 50;
assert(isequal(no_digit_sum(n,m),total))
|
3 | Pass |
n = 33;
m = 3;
total = 396;
assert(isequal(no_digit_sum(n,m),total))
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
Return the 3n+1 sequence for n
6167 Solvers
Project Euler: Problem 3, Largest prime factor
379 Solvers
1143 Solvers
Convert given decimal number to binary number.
636 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!