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))
|
553 Solvers
Back to basics 3 - Temp Directory
277 Solvers
77 Solvers
24 Solvers
75 Solvers