Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
tic
urlwrite('http://contest.usc.edu/index.php/Fall12/Home?action=download&upname=driving.in.txt','driving.in.txt');
toc
Elapsed time is 0.660240 seconds.
|
2 | Pass |
%%
fid=fopen('driving.in.txt','r');
xy_expect=[3 2;2 29;107 23;-79 -72];
qty=fscanf(fid,'%i',1);
for q=1:qty %qty
n = fscanf(fid,'%f\n',1); % commands
m=cell(n,1);
for i=1:n
m{i}=fgetl(fid);
end
[xy]=Drive(m) ;
assert(isequal(xy,xy_expect(q,:)))
% fprintf('Q %i x %i y %i Pass %i\n',q,xy,tf)
end % q
fclose(fid);
toc
Elapsed time is 0.930005 seconds.
|
4098 Solvers
Convert hex color specification to MATLAB RGB
91 Solvers
How long is the longest prime diagonal?
280 Solvers
141 Solvers
Given a 4x4 matrix, swap the two middle columns
298 Solvers