在给定单词中查找单词字谜的内存错误

时间:2019-07-16 19:05:14

标签: python-3.x

我正在编写代码以查找给定单词中的单词变位词,我的代码在脱机编译器中工作,但不在在线编辑器中运行,我得到了内存错误。下面是我的代码:

帮助我解决此错误

import itertools
s=input()
c=input()
sum=0
a=list("".join(perm) for perm in itertools.permutations(c) )
print(a)
for i in a:
    cnt=s.count(i)
    sum=sum+cnt

print(sum) 

这是我的输出: 运行时错误: MemoryError

0 个答案:

没有答案