Skip to content

Commit 02a6dfe

Browse files
authored
Create: 0097-interleaving-string.c || 7000th commit!
- **File(s) Modified**: _0097-interleaving-string.c_ - **Language(s) Used**: _C_ - **Submission URL**: _https://leetcode.com/problems/interleaving-string/submissions/1016421135/_
1 parent 04e3d73 commit 02a6dfe

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

c/0097-interleaving-string.c

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
bool isInterleave(char *s1, char *s2, char *s3) {
2+
int len1 = strlen(s1);
3+
int len2 = strlen(s2);
4+
int len3 = strlen(s3);
5+
6+
// If the lengths of the input strings don't add up correctly, return false
7+
if (len1 + len2 != len3) {
8+
return false;
9+
}
10+
11+
// Create a 2D DP array to store the results of subproblems
12+
bool dp[len1 + 1][len2 + 1];
13+
memset(dp, false, sizeof(dp));
14+
15+
// Base case: empty strings can always interleave to form an empty string
16+
dp[0][0] = true;
17+
18+
// Fill in the DP array
19+
for (int i = 0; i <= len1; i++) {
20+
for (int j = 0; j <= len2; j++) {
21+
// If s1 matches the interleaved portion of s3
22+
if (i > 0 && s1[i - 1] == s3[i + j - 1]) {
23+
dp[i][j] = dp[i][j] || dp[i - 1][j];
24+
}
25+
// If s2 matches the interleaved portion of s3
26+
if (j > 0 && s2[j - 1] == s3[i + j - 1]) {
27+
dp[i][j] = dp[i][j] || dp[i][j - 1];
28+
}
29+
}
30+
}
31+
32+
return dp[len1][len2];
33+
}

0 commit comments

Comments
 (0)