Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[1 2];
y=1;
y_correct=[1 2];
assert(isequal(muldif(x,y),y_correct));
r =
1 2
|
2 | Pass |
x=1;
y=1;
y_correct=1;
assert(isequal(muldif(x,y),y_correct));
r =
1
|
3 | Pass |
x=[1 2 0 1];
y=[8 5 1];
y_correct = [8 21 11 10 5 1];
assert(isequal(muldif(x,y),y_correct))
r =
8 21 11 10 5 1
|
4 | Pass |
x=[1 2 3 4 4 1 2 1 1 1];
y=[1 2 3 4 5 6 9 10];
y_correct=[1 4 10 20 34 49 68 90 104 109 101 73 43 40 25 19 10];
assert(isequal(muldif(x,y),y_correct));
r =
1 4 10 20 34 49 68 90 104 109 101 73 43 40 25 19 10
|
5 | Pass |
x=[1:10 0 1];
y=[8 5:1:25 1];
y_correct = [8 21 40 66 100 143 196 260 336 425 440 503 555 611 667 723 779 835 891 947 1003 1059 1090 1094 1070 1017 934 820 674 495 282 34 25 1
];
assert(isequal(muldif(x,y),y_correct))
r =
Columns 1 through 14
8 21 40 66 100 143 196 260 336 425 440 503 555 611
Columns 15 through 28
667 723 779 835 891 947 1003 1059 1090 1094 1070 1017 934 820
Columns 29 through 34
674 495 282 34 25 1
|
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
404 Solvers
483 Solvers
413 Solvers
Add a row of zeros on top of a matrix
193 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!