This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 3;
y = 5;
z = 1;
y_correct = 8;
assert(isequal(your_fcn_name(x,y,z),y_correct))
x =
8
|
2 | Pass |
x = 1;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
x =
1
|
3 | Pass |
x = 1;
y = 3;
y_correct = 4;
assert(isequal(your_fcn_name(x,y),y_correct))
x =
4
|
4 | Pass |
x = 1;
y = 1;
z = 12;
p = 10;
y_correct = 22;
assert(isequal(your_fcn_name(x,y,z,p),y_correct))
x =
22
|
Find the longest sequence of 1's in a binary sequence.
3370 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Back to basics - mean of corner elements of a matrix
297 Solvers
251 Solvers
206 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!