Can we please block and ban all these fake answers that cheat the webapp into returning success when they haven't actually solved the problem?
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 3;
b = 4;
c = 5;
flag_correct = true;
assert(isequal(isRightAngled(a,b,c),flag_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 isRightAngled (line 2)
In ScoringEngineTestPoint1 (line 5)
In solutionTest (line 3)]
|
2 | Pass |
a = 2;
b = 3;
c = 4;
flag_correct = false;
assert(isequal(isRightAngled(a,b,c),flag_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 isRightAngled (line 2)
In ScoringEngineTestPoint2 (line 5)
In solutionTest (line 5)]
|
3 | Pass |
a = 5;
b = 12;
c = 13;
flag_correct = true;
assert(isequal(isRightAngled(a,b,c),flag_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 isRightAngled (line 2)
In ScoringEngineTestPoint3 (line 5)
In solutionTest (line 7)]
|
Given two strings, find the maximum overlap
461 Solvers
965 Solvers
257 Solvers
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
358 Solvers
321 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!