Diffing "mrowb" and "Try n"

Title: mrowb Try n
Author: j Imre Polik
Submitted: 2003-11-05 15:46:35 UTC 2003-11-05 15:49:25 UTC
Status: Failed Failed
Score: 0.0 0.0
Result: [] []
CPU Time: 0.0 0.0
Code:
[h,w]=size(a)
[h w]=size(a)
b=0
for s=1:min(h,w)
    for i=1:h-s
            for j=1:w-s
    l=a(i:s+i,j:s+j)
    if min(l)==max(l) & sum(l(:))>b, b=sum(l(:)),end; 
end
end
end