Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 20;
m = 5;
total = 190;
assert(isequal(no_digit_sum(n,m),total))
v =
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
2 | Pass |
n = 10;
m = 5;
total = 50;
assert(isequal(no_digit_sum(n,m),total))
v =
1 2 3 4 5 6 7 8 9 10
|
3 | Pass |
n = 33;
m = 3;
total = 396;
assert(isequal(no_digit_sum(n,m),total))
v =
Columns 1 through 29
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
Columns 30 through 33
30 31 32 33
|
Find relatively common elements in matrix rows
865 Solvers
Find state names that start with the letter N
599 Solvers
280 Solvers
965 Solvers
206 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!