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 | Pass |
x = 1;
y_correct = false;
assert(isequal(multof3(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In multof3 (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 3;
y_correct = true;
assert(isequal(multof3(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In multof3 (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 372;
y_correct = true;
assert(isequal(multof3(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In multof3 (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = 5;
y_correct = false;
assert(isequal(multof3(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In multof3 (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x = 42;
y_correct = true;
assert(isequal(multof3(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In multof3 (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
x = 41;
y_correct = false;
assert(isequal(multof3(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In multof3 (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
7 | Pass |
x = 81;
y_correct = true;
assert(isequal(multof3(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In multof3 (line 2)
In ScoringEngineTestPoint7 (line 3)
In solutionTest (line 15)]
|
8 | Pass |
x = 82;
y_correct = false;
assert(isequal(multof3(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In multof3 (line 2)
In ScoringEngineTestPoint8 (line 3)
In solutionTest (line 17)]
|
9 | Pass |
x = 33333333;
y_correct = true;
assert(isequal(multof3(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In multof3 (line 2)
In ScoringEngineTestPoint9 (line 3)
In solutionTest (line 19)]
|
10 | Pass |
x = 369636963;
y_correct = true;
assert(isequal(multof3(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In multof3 (line 2)
In ScoringEngineTestPoint10 (line 3)
In solutionTest (line 21)]
|
Create a Multiplication table matrix...
283 Solvers
384 Solvers
117 Solvers
85 Solvers
Check availability of a number in an array
52 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!