Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('vmultiply.m');
assert(isempty(strfind(filetext,'regexp')))
assert(isempty(strfind(filetext,'switch')))
|
2 | Pass |
v1 = [1 2];
v2 = [5 0 0];
v3_correct = [6 0 0 0];
assert(isequal(vmultiply(v1,v2),v3_correct))
assert(isequal(vmultiply(v2,v1),v3_correct))
v3 =
uint64
6000
v3 =
6 0 0 0
v3 =
uint64
6000
v3 =
6 0 0 0
|
3 | Pass |
v1 = [9 9];
v2 = [9 9];
v3_correct = [9 8 0 1];
assert(isequal(vmultiply(v1,v2),v3_correct))
assert(isequal(vmultiply(v2,v1),v3_correct))
v3 =
uint64
9801
v3 =
9 8 0 1
v3 =
uint64
9801
v3 =
9 8 0 1
|
4 | Fail |
v1 = [8 3 4 5 7 1 6 9 4 0 2 0 2 1 5 8 9 4];
v2 = [1 0 0 6 6 9 4 3 1 8 2 7 0 5 4 5 5];
v3_correct = [8 4 0 1 5 8 5 8 2 5 5 9 5 7 5 5 3 3 8 6 7 6 3 6 6 1 1 1 5 0 1 7 7 0];
assert(isequal(vmultiply(v1,v2),v3_correct))
assert(isequal(vmultiply(v2,v1),v3_correct))
v3 =
uint64
18446744073709551615
v3 =
1 8 4 4 6 7 4 4 0 7 3 7 0 9 5 5 1 6 1 5
|
Return unique values without sorting
588 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
101 Solvers
241 Solvers
Find the area of the four walls
202 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!