Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
trades = [1 3 -4 2 -1 2 3]
y_correct = 2;
assert(isequal(trade_profit(trades),y_correct))
Error: You may not use the command(s) eval in your code
|
2 | Fail |
%%
trades = [1 2 3 -5]
y_correct = 1;
assert(isequal(trade_profit(trades),y_correct))
Error: You may not use the command(s) eval in your code
|
3 | Fail |
%%
trades = [1 2 3 4 5 6]
y_correct = 6;
assert(isequal(trade_profit(trades),y_correct))
Error: You may not use the command(s) eval in your code
|
4 | Fail |
%%
trades = [-2 3 -4 5 -6 1 2 3 4 5]
y_correct = 3;
assert(isequal(trade_profit(trades),y_correct))
Error: You may not use the command(s) eval in your code
|
4598 Solvers
1262 Solvers
338 Solvers
3971 Solvers
698 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!