A、B和C。如果C包含且仅包含来自A和B的所有字符,而且在C中属于A的字符之间保持原来在A中的顺序,属于B的字符之间保持原来在B中的顺序,那么称C是A和B的混编。实现一个函数,判断C是否是A和B的混编。 给定三个字符串A,B和C,及他们的长度。请返回一个bool值,代表C是否是A和B的混编。保证三个串的长度均小于等于100。 测试样例: "ABC",3,"12C",3,"A12BCC",6 返回:true
加载中...
import java.util.*; public class Mixture { public boolean chkMixture(String A, int n, String B, int m, String C, int v) { // write code here } }
class Mixture { public: bool chkMixture(string A, int n, string B, int m, string C, int v) { // write code here } };
# -*- coding:utf-8 -*- class Mixture: def chkMixture(self, A, n, B, m, C, v): # write code here
class Mixture { public bool chkMixture(string A, int n, string B, int m, string C, int v) { // write code here } }