Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 20;
m = 5;
total = 190;
assert(isequal(no_digit_sum(n,m),total))
ans =
190
|
2 | Pass |
%%
n = 10;
m = 5;
total = 50;
assert(isequal(no_digit_sum(n,m),total))
ans =
50
|
3 | Pass |
%%
n = 33;
m = 3;
total = 396;
assert(isequal(no_digit_sum(n,m),total))
ans =
396
|
1091 Solvers
Create a cell array out of a struct
507 Solvers
Project Euler: Problem 7, Nth prime
521 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
227 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!