Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = '3+3';
y_correct = 4;
assert(isequal(cody_size(x),y_correct))
|
2 | Pass |
x = '[1 2 3 4 5 6 7]';
y_correct = 10;
assert(isequal(cody_size(x),y_correct))
|
3 | Pass |
x = '1:7';
y_correct = 4;
assert(isequal(cody_size(x),y_correct))
|
4 | Pass |
x = '''bcdefgh''-''a''';
y_correct = 4;
assert(isequal(cody_size(x),y_correct))
|
5 | Pass |
x = '(-b+sqrt(b^2-4*a*c))/(2*a)';
y_correct = 26;
assert(isequal(cody_size(x),y_correct))
|
6 | Pass |
x = 'function y = plus2(x), y = x+1; end';
y_correct = 12;
assert(isequal(cody_size(x),y_correct))
|
284 Solvers
Flip the main diagonal of a matrix
506 Solvers
464 Solvers
Determine if input is a perfect number
145 Solvers
2455 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!