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 | Fail |
x = 'X= A1 + A2*(Y1 + A3*Y123) ;' ;
y_correct = {'Y1', 'Y123'} ;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Fail |
x= 'X= A + B*Y1*exp( C + D*Y12**2)' ;
y_correct = {'Y1', 'Y12'} ;
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Fail |
x= 'X= A + B*log( Y1 + 2) ; Z= atan( C + D*Y3*exp( C + D*Y12**2)' ;
y_correct = {'Y1', 'Y12', 'Y3'} ;
assert(isequal(your_fcn_name(x),y_correct))
|
Least common multiple of many numbers
159 Solvers
Back to basics 20 - singleton dimensions
225 Solvers
Flip the main diagonal of a matrix
426 Solvers
Vectorize the digits of an Integer
236 Solvers
202 Solvers