Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 20;
m = 5;
total = 190;
assert(isequal(no_digit_sum(n,m),total))
v =
1×20 string array
"1" "2" "3" "4" "5" "6" "7" "8" "9" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20"
ans =
190
|
2 | Pass |
n = 10;
m = 5;
total = 50;
assert(isequal(no_digit_sum(n,m),total))
v =
1×10 string array
"1" "2" "3" "4" "5" "6" "7" "8" "9" "10"
ans =
50
|
3 | Pass |
n = 33;
m = 3;
total = 396;
assert(isequal(no_digit_sum(n,m),total))
v =
1×33 string array
Columns 1 through 23
"1" "2" "3" "4" "5" "6" "7" "8" "9" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" "22" "23"
Columns 24 through 33
"24" "25" "26" "27" "28" "29" "30" "31" "32" "33"
ans =
396
|
312 Solvers
Reverse the Words (not letters) of a String
297 Solvers
Determine the number of odd integers in a vector
435 Solvers
400 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!