Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 20;
m = 5;
total = 190;
assert(isequal(no_digit_sum(n,m),total))
s =
Columns 1 through 16
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Columns 17 through 20
17 18 19 20
r =
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
k =
5
p =
\d*5
z =
190
|
2 | Pass |
%%
n = 10;
m = 5;
total = 50;
assert(isequal(no_digit_sum(n,m),total))
s =
1 2 3 4 5 6 7 8 9 10
r =
1 2 3 4 5 6 7 8 9 10
k =
5
p =
\d*5
z =
50
|
3 | Pass |
%%
n = 33;
m = 3;
total = 396;
assert(isequal(no_digit_sum(n,m),total))
s =
Columns 1 through 16
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Columns 17 through 32
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
Column 33
33
r =
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 30 31 32 33
k =
3
p =
\d*3
z =
399
z =
396
|
312 Solvers
Determine if a Given Number is a Triangle Number
322 Solvers
Reverse the elements of an array
687 Solvers
274 Solvers
Deleting an element in a matrix
325 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!