Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = '3+3';
y_correct = 4;
assert(isequal(cody_size(x),y_correct))
y =
13
|
2 | Fail |
x = '[1 2 3 4 5 6 7]';
y_correct = 10;
assert(isequal(cody_size(x),y_correct))
y =
13
|
3 | Fail |
x = '1:7';
y_correct = 4;
assert(isequal(cody_size(x),y_correct))
y =
13
|
4 | Fail |
x = '''bcdefgh''-''a''';
y_correct = 4;
assert(isequal(cody_size(x),y_correct))
y =
13
|
5 | Fail |
x = '(-b+sqrt(b^2-4*a*c))/(2*a)';
y_correct = 26;
assert(isequal(cody_size(x),y_correct))
y =
13
|
6 | Fail |
x = 'function y = plus2(x), y = x+1; end';
y_correct = 12;
assert(isequal(cody_size(x),y_correct))
y =
13
|
556 Solvers
376 Solvers
521 Solvers
480 Solvers
413 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!