This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = {{{{{{{{} 'hello'} 'world'} 'this'} 'is'} 'a'} 'string'} 'array'};
y_correct = {'hello' 'world' 'this' 'is' 'a' 'string' 'array'};
assert(isequal(unInception(x),y_correct))
|
2 | Pass |
%%
x = {};
y_correct = {};
assert(isequal(unInception(x),y_correct))
|
3 | Pass |
%%
x = {{} ''};
y_correct = {''};
assert(isequal(unInception(x),y_correct))
|
4 | Pass |
%%
x = {{{{} 'hello'} ''} 'yeah'};
y_correct = {'hello' '' 'yeah'};
assert(isequal(unInception(x),y_correct))
|
Maximum running product for a string of numbers
816 Solvers
random picture with random colours
125 Solvers
40 Solvers
337 Solvers
469 Solvers