% i mean that: test = is_it_odd; :D
good job
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
n = 1;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'is_it_odd' for input arguments of type 'double'.
|
2 | Fail |
%%
n = 2;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'is_it_odd' for input arguments of type 'double'.
|
3 | Fail |
%%
n = 28;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'is_it_odd' for input arguments of type 'double'.
|
4 | Fail |
%%
n = 453;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'is_it_odd' for input arguments of type 'double'.
|
5 | Fail |
%%
n = 17;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'is_it_odd' for input arguments of type 'double'.
|
6 | Fail |
%%
n = 16;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'is_it_odd' for input arguments of type 'double'.
|
Sort a list of complex numbers based on far they are from the origin.
3790 Solvers
729 Solvers
198 Solvers
193 Solvers
439 Solvers