Nominating me gets a free like! :-)
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 James !!!
|
2726 Solvers
Getting the row and column location from a matrix
192 Solvers
Find a subset that divides the vector into equal halves
289 Solvers
28 Solvers
68 Solvers