给定待查询列表 queries,和模式串 pattern,返回由布尔值组成的答案列表 answer。...只有在待查项 queries[i] 与模式串 pattern 匹配时, answer[i] 才为 true,否则为 false。...,false,true,true,false]
示例:
"FooBar" 可以这样生成:"F" + "oo" + "B" + "ar"。...,false,true,false,false]
解释:
"FooBar" 可以这样生成:"Fo" + "o" + "Ba" + "r"....,true,false,false,false]
解释:
"FooBarTest" 可以这样生成:"Fo" + "o" + "Ba" + "r" + "T" + "est".