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))
|
1879 Solvers
239 Solvers
Back to basics 12 - Input Arguments
467 Solvers
Compute a dot product of two vectors x and y
646 Solvers
81 Solvers