This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
though I did not understand the question...
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = 1;
assert(isequal(which_doors_open(x),y_correct))
a =
1
y =
1
|
2 | Pass |
%%
x = 3;
y_correct = 1;
assert(isequal(which_doors_open(x),y_correct))
a =
1
y =
1
|
3 | Pass |
%%
x = 100;
y_correct = [1 4 9 16 25 36 49 64 81 100];
assert(isequal(which_doors_open(x),y_correct))
a =
10
y =
1
y =
1 4
y =
1 4 9
y =
1 4 9 16
y =
1 4 9 16 25
y =
1 4 9 16 25 36
y =
1 4 9 16 25 36 49
y =
1 4 9 16 25 36 49 64
y =
1 4 9 16 25 36 49 64 81
y =
1 4 9 16 25 36 49 64 81 100
|
221 Solvers
273 Solvers
356 Solvers
467 Solvers
502 Solvers