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
|
Make an N-dimensional Multiplication Table
113 Solvers
Back to basics 20 - singleton dimensions
254 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
519 Solvers
Is this triangle right-angled?
2872 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!