Lol
function b = isItSquared(a)
b = sum(a(:)==a.^2,"all");
end
b=any(ismember(a.*a,a))
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [2 3 4];
assert(isequal(isItSquared(a),true))
[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 isItSquared (line 2)
In ScoringEngineTestPoint1 (line 2)
In solutionTest (line 3)]
|
2 | Pass |
a = [20:30];
assert(isequal(isItSquared(a),false))
[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 isItSquared (line 2)
In ScoringEngineTestPoint2 (line 2)
In solutionTest (line 5)]
|
3 | Pass |
a = [1];
assert(isequal(isItSquared(a),true))
[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 isItSquared (line 2)
In ScoringEngineTestPoint3 (line 2)
In solutionTest (line 7)]
|
4 | Pass |
a = [6 10 12 14 36 101];
assert(isequal(isItSquared(a),true))
[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 isItSquared (line 2)
In ScoringEngineTestPoint4 (line 2)
In solutionTest (line 9)]
|
5 | Pass |
a = [6 10 12 14 101];
assert(isequal(isItSquared(a),false))
[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 isItSquared (line 2)
In ScoringEngineTestPoint5 (line 2)
In solutionTest (line 11)]
|
536 Solvers
Back to basics 25 - Valid variable names
293 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
465 Solvers
Find the sides of an isosceles triangle when given its area and height from its base to apex
449 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!