This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
rate = [2,5,4];
price = [8,3,1];
y_correct = 3360;
assert(isequal(earnings(rate,price),3360))
|
2 | Pass |
rate = [1,4];
price = [2,1];
y_correct = 576;
assert(isequal(earnings(rate,price),576))
|
3 | Pass |
rate = [6 6 2 3 2 8];
price = [3 2 4 8 9 5];
y_correct = 11520;
assert(isequal(earnings(rate,price),11520))
|
239 Solvers
Back to basics 9 - Indexed References
348 Solvers
263 Solvers
327 Solvers
211 Solvers