Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 20;
m = 5;
total = 190;
assert(isequal(no_digit_sum(n,m),total))
A =
[]
ans =
190
|
2 | Pass |
%%
n = 10;
m = 5;
total = 50;
assert(isequal(no_digit_sum(n,m),total))
A =
[]
ans =
50
|
3 | Pass |
%%
n = 33;
m = 3;
total = 396;
assert(isequal(no_digit_sum(n,m),total))
A =
[]
ans =
396
|
Remove any row in which a NaN appears
6827 Solvers
1159 Solvers
Number of 1s in the Binary Representation of a Number
356 Solvers
Matrix with different incremental runs
249 Solvers
505 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!