what is wrong with the solution?
You're returning the string "true" or "false" which the test suite is trying to compare to a boolean variable true or false. Since the string does not equal the boolean value, assert fails.
good job
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
n = 1;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_correct))
Error: Assertion failed.
|
2 | Fail |
%%
n = 2;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_correct))
Error: Assertion failed.
|
3 | Fail |
%%
n = 28;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_correct))
Error: Assertion failed.
|
4 | Fail |
%%
n = 453;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_correct))
Error: Assertion failed.
|
5 | Fail |
%%
n = 17;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_correct))
Error: Assertion failed.
|
6 | Fail |
%%
n = 16;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_correct))
Error: Assertion failed.
|
Find state names that start with the letter N
465 Solvers
13798 Solvers
232 Solvers
Getting the absolute index from a matrix
177 Solvers
212 Solvers