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))
ans =
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))
ans =
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))
ans =
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))
ans =
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))
ans =
9.8765e+09
|
1398 Solvers
516 Solvers
Vectorizing, too easy or too hard?
128 Solvers
694 Solvers
Number of digits in an integer
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!