Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 586 Bytes

0097-interleaving-string.adoc

File metadata and controls

30 lines (21 loc) · 586 Bytes

97. Interleaving String

{leetcode}/problems/interleaving-string/[LeetCode - Interleaving String^]

Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.

Example 1:

Input: s1 = "aabcc", s2 = "dbbca", s3 = "aadbbcbcac"
Output: true

Example 2:

Input: s1 = "aabcc", s2 = "dbbca", s3 = "aadbbbaccc"
Output: false
link:{sourcedir}/_0097_InterleavingString.java[role=include]