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 = rrm;
assert(x>0)
assert(x/2==0)
|
2 | Pass |
%%
x = rrm*[1:10]/2/rrm;
x_correct = [0 1 2 2 2 3 4 4 4 5];
assert(isequal(x,x_correct))
|
3 | Pass |
%%
x = rrm*[2:16]/3/rrm;
x_correct = kron(1:5,ones(1,3));
assert(isequal(x,x_correct))
|
4 | Pass |
%%
% return A022852 sequence - integer nearest n*e - without 'round':
n = 1:17;
x = rrm*n*exp(1)/rrm;
x_correct = [3 5 8 11 14 16 19 22 24 27 30 33 35 38 41 43 46];
assert(isequal(x,x_correct))
|
Sort a list of complex numbers based on far they are from the origin.
3788 Solvers
96 Solvers
Choose the best fitting dominoes
161 Solvers
369 Solvers
197 Solvers