class Solution(object):
def isInterleave(self, s1, s2, s3):
"""
:type s1: str
:type s2: str
:type s3: str
:rtype: bool
"""
l1=len(s1)
l2=len(s2)
l3=len(s3)
if (l1+l2)!=l3: return False
if l1==0 :return s2==s3
if l2==0 :return s1==s3
d=[[False for j in xrange(l2+1)]for i in xrange(l1+1)]
d[0][0]=True
for i in xrange(1,l1+1):
if s3[:i]==s1[:i]:
d[i][0]=True
for j in xrange(1,l2+1):
if s3[:j]==s2[:j]:
d[0][j]=True
for i in xrange(1,l1+1):
for j in xrange(1,l2+1):
d[i][j]=(d[i-1][j] and s3[i+j-1]==s1[i-1])or (d[i][j-1] and s3[i+j-1]==s2[j-1])
return d[l1][l2]
97. Interleaving String
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Given s1, s2, s3, find whether s3 is formed by the interl...
- 问题描述 Given s1, s2, s3, find whether s3 is formed by the i...
- Given s1, s2, s3, find whether s3 is formed by the interl...
- 原题 给出三个字符串:s1、s2、s3,判断s3是否由s1和s2交叉构成。 样例比如 s1 =** "aabcc"...
- 题目描述: Given s1, s2, s3, find whether s3 is formed by the ...