C++ Solution to Coding Challenge 890. Find and Replace Pattern
How to create a bijection map
Problem statement
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…