Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 20;
m = 5;
total = 190;
assert(isequal(no_digit_sum(n,m),total))
c =
5 15
|
2 | Pass |
n = 10;
m = 5;
total = 50;
assert(isequal(no_digit_sum(n,m),total))
c =
5
|
3 | Pass |
n = 33;
m = 3;
total = 396;
assert(isequal(no_digit_sum(n,m),total))
c =
3 13 23 33 30 31 32
|
Which values occur exactly three times?
3817 Solvers
Make one big string out of two smaller strings
1148 Solvers
How many trades represent all the profit?
520 Solvers
Basics: 'Find the eigenvalues of given matrix
323 Solvers
3064 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!