Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y=3;
assert(isequal(function_io(x,y),' "x" = 1 "y" = 3'))
|
2 | Pass |
%%
x = 100;
y= 356;
z = 400;
assert(isequal(function_io(x,y,z),' "x" = 100 "y" = 356 "z" = 400'))
|
3 | Pass |
%%
x = 0;
assert(isequal(function_io(x),' "x" = 0'))
|
4 | Pass |
%%
abc = 0;
pqr = 1;
xyz = 2;
assert(isequal(function_io(abc,pqr,xyz),' "abc" = 0 "pqr" = 1 "xyz" = 2'))
|
19329 Solvers
926 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1491 Solvers
Vectorizing, too easy or too hard?
128 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!