in every other program language i have used, arrays are called with BRACKETS not parenthesis.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [10 2];
y_correct = 2/10;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [20 1];
y_correct = 1/20;
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = [100 20];
y_correct = 1/5;
assert(isequal(your_fcn_name(x),y_correct))
|
1421 Solvers
2240 Solvers
Back to basics 3 - Temp Directory
328 Solvers
Return elements unique to either input
550 Solvers
559 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!