This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
% removes overloads addressing this specific testsuite
!/bin/rm assert* fopen* fclose* fread*
% gets expected output/score
fh=fopen('zeroscore.m');str=fread(fh,'*char')'; fclose(fh);
results=cody.verifyCode(str,'assert(isequal(zeroscore(),0))');
% pass/fail
str={'Failed','Passed'};
if results.pass&results.score=='0'&ischar(results.score), fprintf('Congrats! Solution score: %s; Correct output: %s\n',results.score, str{1+results.pass});
else fprintf('Sorry! Solution score: %s; Correct output: %s\n',results.score, str{1+results.pass}); [a,b]=1;
end
/bin/rm: cannot remove ‘assert*’: No such file or directory
/bin/rm: cannot remove ‘fopen*’: No such file or directory
/bin/rm: cannot remove ‘fclose*’: No such file or directory
/bin/rm: cannot remove ‘fread*’: No such file or directory
|
255 Solvers
641 Solvers
07 - Common functions and indexing 1
338 Solvers
212 Solvers
140 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!