Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x = 1;
y_correct = 1;
assert(isequal(which_doors_open(x),y_correct))
Error: Assertion failed.
|
2 | Pass |
%%
x = 3;
y_correct = 1;
assert(isequal(which_doors_open(x),y_correct))
ans =
1
|
3 | Fail |
%%
x = 100;
y_correct = [1 4 9 16 25 36 49 64 81 100];
assert(isequal(which_doors_open(x),y_correct))
Error: Assertion failed.
|
Make one big string out of two smaller strings
1149 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3620 Solvers
424 Solvers
A Simple Tide Gauge with MATLAB
342 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!