Diffing "test94" and "test95"

Title: test94 test95
Author: Alex Alex
Submitted: 2003-11-05 16:30:41 UTC 2003-11-05 16:33:01 UTC
Status: Failed Failed
Score: 0.0 0.0
Result: [] []
CPU Time: 0.0 0.0
Code:
a(9,9)=0
x=1:9
b=0
for k=x
  for i=x
    for j=x
      c = a(i:i+k,j:j+k)
      b = max(b, sum(c(:)) * all(all(c==c(1))) )
      c = c(:)
      b = max(b, sum(c) * all(c==c(1)) )
    end
  end
end