This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 4;
b = 5;
y_correct = 49380;
assert(isequal(pattern_sum(a,b),y_correct))
y =
49380
|
2 | Pass |
a = 7;
b = 4;
y_correct = 8638;
assert(isequal(pattern_sum(a,b),y_correct))
y =
8638
|
3 | Pass |
a = 5;
b = 3;
y_correct = 615;
assert(isequal(pattern_sum(a,b),y_correct))
y =
615
|
4 | Pass |
a = 1;
b = 1;
y_correct = 1;
assert(isequal(pattern_sum(a,b),y_correct))
y =
1
|
5 | Pass |
a = 2;
b = 2;
y_correct = 24;
assert(isequal(pattern_sum(a,b),y_correct))
y =
24
|
6 | Pass |
a = 9;
b = 9;
y_correct = 1111111101;
assert(isequal(pattern_sum(a,b),y_correct))
y =
1.1111e+09
|
7 | Pass |
a = 0;
b = 0;
y_correct = 0;
assert(isequal(pattern_sum(a,b),y_correct))
y =
0
|
8 | Pass |
a = 3;
b = 8;
y_correct = 37037034;
assert(isequal(pattern_sum(a,b),y_correct))
y =
37037034
|
Omit columns averages from a matrix
527 Solvers
Find the largest value in the 3D matrix
1056 Solvers
Output any real number that is neither positive nor negative
316 Solvers
Relative ratio of "1" in binary number
392 Solvers
525 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!