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
|
6718 Solvers
3074 Solvers
Which values occur exactly three times?
3817 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
444 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!