Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [ 1 0 1 1 0 1 1 ]';
y_correct = 2;
assert(isequal(soroban_evaluate(x),y_correct))
five =
0
y =
2
|
2 | Pass |
x = [ 1 1 0 0 0
0 0 1 1 1
1 0 0 1 1
0 1 1 1 0
1 1 1 1 1
1 1 1 0 1
1 1 1 1 1 ];
y_correct = 10586;
assert(isequal(soroban_evaluate(x),y_correct))
five =
555
y =
10586
|
3 | Pass |
x = [ 1 1 1 1 1
0 0 0 0 0
0 0 0 0 0
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1 ];
y_correct = 0;
assert(isequal(soroban_evaluate(x),y_correct))
five =
0
y =
0
|
4 | Pass |
x = [ 0 1 1 1 1
1 0 0 0 0
0 0 0 0 0
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1 ];
y_correct = 50000;
assert(isequal(soroban_evaluate(x),y_correct))
five =
50000
y =
50000
|
5 | Pass |
x = [ 0 0 0 0 0 1 1 1 1 1
1 1 1 1 1 0 0 0 0 0
1 1 1 1 0 1 1 1 1 0
1 1 1 0 1 1 1 1 0 1
1 1 0 1 1 1 1 0 1 1
1 0 1 1 1 1 0 1 1 1
0 1 1 1 1 0 1 1 1 1 ];
y_correct = 9876543210;
assert(isequal(soroban_evaluate(x),y_correct))
five =
5.5555e+09
y =
9.8765e+09
|
338 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
251 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
315 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!