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 = 3;
y = get_colorVs(x);
c0 = 0;
c1 = 0;
cw = 0;
cs = 0;
cd = 0;
for i = 1:3
cs = cs + (length(y{i})~=3);
c0 = c0 + sum(y{i}<0);
c1 = c1 + sum(y{i}>1);
cw = cw + (sum(y{i}) > 2.5);
end
for i = 1:x-1
for j = i+1:x
cd = cd + (sum(y{i}==y{j}) == 3);
end
end
assert(isequal(cs+c0+c1+cw+cd,0))
|
2 | Pass |
x = 12;
y = get_colorVs(x);
c0 = 0;
c1 = 0;
cw = 0;
cs = 0;
cd = 0;
for i = 1:3
cs = cs + (length(y{i})~=3);
c0 = c0 + sum(y{i}<0);
c1 = c1 + sum(y{i}>1);
cw = cw + (sum(y{i}) > 2.5);
end
for i = 1:x-1
for j = i+1:x
cd = cd + (sum(y{i}==y{j}) == 3);
end
end
assert(isequal(cs+c0+c1+cw+cd,0))
|
1963 Solvers
Flag largest magnitude swings as they occur
582 Solvers
171 Solvers
238 Solvers
Find the index of n in magic(n)
160 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!