Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
lines=textread('nomination.m','%s');
id_own=str2num(regexp(lines{end},'\d+','match','once'));
x=uint64(nomination());
if x == uint64(id_own)
assignin('caller','score',-1);
error('Funny! You tried to nominate yourself!')
end
assignin('caller','score',x);
problem=2907;
html=urlread(sprintf('http://www.mathworks.com/matlabcentral/cody/problems/%d/solutions?term=size:%d',problem,id_own));
n=numel(regexpi(html,'solution \d+'));
if n < 1
error('Sorry. You are nominated by none.');
end
%_______
url = sprintf('https://www.mathworks.com/matlabcentral/cody/players/%d',x);
html = urlread(url);
c = regexp(html,'h1.+h1','match');
name = c{1}(4:end-4);
s = sprintf('____________________\n\nYou have nominated %s !!!',name);
disp(s)
____________________
You have nominated Josh Natanson !!!
|
927 Solvers
612 Solvers
498 Solvers
57 Solvers
Arrange vector in ascending order
541 Solvers