0890. Find and Replace Pattern
https://leetcode.com/problems/find-and-replace-pattern
Description
Given a list of strings words
and a string pattern
, return a list of words[i]
that match pattern
. You may return the answer in any order.
A word matches the pattern if there exists a permutation of letters p
so that after replacing every letter x
in the pattern with p(x)
, we get the desired word.
Recall that a permutation of letters is a bijection from letters to letters: every letter maps to another letter, and no two letters map to the same letter.
Example 1:
Example 2:
Constraints:
1 <= pattern.length <= 20
1 <= words.length <= 50
words[i].length == pattern.length
pattern
andwords[i]
are lowercase English letters.
ac
Previous0889. Construct Binary Tree from Preorder and Postorder TraversalNext0891. Sum of Subsequence Widths
Last updated