Cheat
Please remove all the solutions from ChanXy which only bypass the assert function. They don't help no one...
There should be a check in the Cody evaluation to avoid this hack.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = {'1'};
assert(isequal(naturalnumbers(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 naturalnumbers (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 11;
y_correct = {'1','2','3','4','5','6','7','8','9','10','11'};
assert(isequal(naturalnumbers(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 naturalnumbers (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
Make one big string out of two smaller strings
1149 Solvers
1425 Solvers
858 Solvers
224 Solvers
264 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!