Re: [Tutor] failed to load functions,

2011-11-11 Thread lina
I attached the clumsy one as below: https://docs.google.com/open?id=0B93SVRfpVVg3YTNhNTMwODUtMDkyYi00ZTk4LThiOGYtMzdkNzI1ZmNhOWQ0 #!/usr/bin/python3 import os.path from collections import Counter aList=['55', '34', '77', '43', '58', '34', '77', '34', '76', '34', '77', '76', '32', '72', '34', '

[Tutor] failed to load functions,

2011-11-11 Thread lina
Hi, sorry for the new post: if __name__=="__main__": for i in range(97,100): for j in range(97,100): if i != j: s1=chr(i)+"List" s2=chr(j)+"List" '''print(s1,s2)''' LongestCommonSubstring(s1,s2) I am surpris