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)]
|
502 Solvers
Back to basics 17 - white space
245 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
439 Solvers
344 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!