Class Solution
-
- All Implemented Interfaces:
public final class Solution1023 - Camelcase Matching\.
Medium
Given an array of strings
queriesand a stringpattern, return a boolean arrayanswerwhereanswer[i]istrueifqueries[i]matchespattern, andfalseotherwise.A query word
queries[i]matchespatternif you can insert lowercase English letters pattern so that it equals the query. You may insert each character at any position and you may not insert any characters.Example 1:
Input: queries = "FooBar","FooBarTest","FootBall","FrameBuffer","ForceFeedBack", pattern = "FB"
Output: true,false,true,true,false
Explanation: "FooBar" can be generated like this "F" + "oo" + "B" + "ar". "FootBall" can be generated like this "F" + "oot" + "B" + "all". "FrameBuffer" can be generated like this "F" + "rame" + "B" + "uffer".
Example 2:
Input: queries = "FooBar","FooBarTest","FootBall","FrameBuffer","ForceFeedBack", pattern = "FoBa"
Output: true,false,true,false,false
Explanation: "FooBar" can be generated like this "Fo" + "o" + "Ba" + "r". "FootBall" can be generated like this "Fo" + "ot" + "Ba" + "ll".
Example 3:
Input: queries = "FooBar","FooBarTest","FootBall","FrameBuffer","ForceFeedBack", pattern = "FoBaT"
Output: false,true,false,false,false
Explanation: "FooBarTest" can be generated like this "Fo" + "o" + "Ba" + "r" + "T" + "est".
Constraints:
1 <= pattern.length, queries.length <= 1001 <= queries[i].length <= 100queries[i]andpatternconsist of English letters.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-