农场主人有两群牛,每头牛都有一个独特的编号,编号由字母组成。农场主人想要将这两群牛合并,但是他想要保持每头牛的相对顺序不变,即如果牛A在牛B之前,则合并后牛A仍然在牛B之前。给你两个字符串s1和s2,代表两群牛的编号,以及一个字符串s3,你需要判断s3是否可以由s1和s2交错组成。
示例1
输入
"abc","def","adbecf"
输出
true
示例2
输入
"abc","def","abdecf"
输出
true
示例3
输入
"abcd","defx","addbecfx"
输出
false
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ public boolean isInterleave (String s1, String s2, String s3) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ bool isInterleave(string s1, string s2, string s3) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s1 string字符串 # @param s2 string字符串 # @param s3 string字符串 # @return bool布尔型 # class Solution: def isInterleave(self , s1 , s2 , s3 ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ public bool isInterleave (string s1, string s2, string s3) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ function isInterleave( s1 , s2 , s3 ) { // write code here } module.exports = { isInterleave : isInterleave };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s1 string字符串 # @param s2 string字符串 # @param s3 string字符串 # @return bool布尔型 # class Solution: def isInterleave(self , s1: str, s2: str, s3: str) -> bool: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ func isInterleave( s1 string , s2 string , s3 string ) bool { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ bool isInterleave(char* s1, char* s2, char* s3 ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s1 string字符串 # @param s2 string字符串 # @param s3 string字符串 # @return bool布尔型 # class Solution def isInterleave(s1, s2, s3) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ def isInterleave(s1: String,s2: String,s3: String): Boolean = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ fun isInterleave(s1: String,s2: String,s3: String): Boolean { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ public boolean isInterleave (String s1, String s2, String s3) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ export function isInterleave(s1: string, s2: string, s3: string): boolean { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ func isInterleave ( _ s1: String, _ s2: String, _ s3: String) -> Bool { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s1 string字符串 * @param s2 string字符串 * @param s3 string字符串 * @return bool布尔型 */ pub fn isInterleave(&self, s1: String, s2: String, s3: String) -> bool { // write code here } }
"abc","def","adbecf"
true
"abc","def","abdecf"
true
"abcd","defx","addbecfx"
false