Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = '3+3';
y_correct = 4;
assert(isequal(cody_size(x),y_correct))
t =
mtree (complete: 4 nodes)
Node 1: PRINT
Node 2: PLUS
Node 3: INT "3"
Node 4: INT "3"
|
2 | Pass |
x = '[1 2 3 4 5 6 7]';
y_correct = 10;
assert(isequal(cody_size(x),y_correct))
t =
mtree (complete: 10 nodes)
|
3 | Pass |
x = '1:7';
y_correct = 4;
assert(isequal(cody_size(x),y_correct))
t =
mtree (complete: 4 nodes)
Node 1: PRINT
Node 2: COLON
Node 3: INT "1"
Node 4: INT "7"
|
4 | Pass |
x = '''bcdefgh''-''a''';
y_correct = 4;
assert(isequal(cody_size(x),y_correct))
t =
mtree (complete: 4 nodes)
Node 1: PRINT
Node 2: MINUS
Node 3: CHARVECTOR "'bcdefgh'"
Node 4: CHARVECTOR "'a'"
|
5 | Pass |
x = '(-b+sqrt(b^2-4*a*c))/(2*a)';
y_correct = 26;
assert(isequal(cody_size(x),y_correct))
t =
mtree (complete: 26 nodes)
|
6 | Pass |
x = 'function y = plus2(x), y = x+1; end';
y_correct = 12;
assert(isequal(cody_size(x),y_correct))
t =
mtree (complete: 12 nodes)
|
Program an exclusive OR operation with logical operators
639 Solvers
Remove from a 2-D matrix all the rows that contain at least one element less than or equal to 4
140 Solvers
Given a 4x4 matrix, swap the two middle columns
515 Solvers
436 Solvers
5461 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!