Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 20;
m = 5;
total = 190;
assert(isequal(no_digit_sum(n,m),total))
l =
Columns 1 through 16
1 2 3 4 6 7 8 9 10 11 12 13 14 16 17 18
Columns 17 through 18
19 20
total =
190
|
2 | Pass |
%%
n = 10;
m = 5;
total = 50;
assert(isequal(no_digit_sum(n,m),total))
l =
1 2 3 4 6 7 8 9 10
total =
50
|
3 | Pass |
%%
n = 33;
m = 3;
total = 396;
assert(isequal(no_digit_sum(n,m),total))
l =
Columns 1 through 16
1 2 4 5 6 7 8 9 10 11 12 14 15 16 17 18
Columns 17 through 26
19 20 21 22 24 25 26 27 28 29
total =
396
|
2500 Solvers
732 Solvers
188 Solvers
434 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!