Diffing "test_1" and "test_2"

Title: test_1 test_2
Author: Stijn Helsen Stijn Helsen
Submitted: 2003-11-04 13:11:21 UTC 2003-11-04 13:13:47 UTC
Status: Passed Passed
Score: 122.0 117.0
Result: pass pass
CPU Time: 2.123 1.672
Code:
k=0;
b=a(1);
for i=1:length(a)
	for j=length(a):-1:i
l=length(a);
for i=1:l
	for j=l:-1:i
		if strcmp(a(i:j),a(j:-1:i))
			if j-i>k
				k=j-i;
				b=a(i:j);
			end
		end
	end
end