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 |
C = 11;
x='C'
y_correct = 11;
assert(isequal(your_fcn_name(x),y_correct))
x =
'C'
|
2 | Fail |
C = -11;
x='C'
y_correct = -11;
assert(isequal(your_fcn_name(x),y_correct))
x =
'C'
|
3 | Fail |
x = 0;
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
|
Determine if a Given Number is a Triangle Number
286 Solvers
Find the stride of the longest skip sequence
81 Solvers
406 Solvers
Are all the three given point in the same line?
197 Solvers
Generate N equally spaced intervals between -L and L
440 Solvers