Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1:10;
[a,b,c,d] = doubleDeal(x);
y_correct = 1:4;
assert(isequal([a b c d],y_correct))
|
2 | Pass |
%%
x = randn(1,1000);
y = cell(1,1000);
[y{:}] = doubleDeal(x);
y_correct = x;
assert(isequal([y{:}],y_correct))
|
1163 Solvers
Project Euler: Problem 10, Sum of Primes
707 Solvers
Basics: 'Find the eigenvalues of given matrix
322 Solvers
413 Solvers
2334 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!