Please read the new rule regarding the restriction on the use of AI tools. ×

String matching with multiple languages

Revision en2, by swordx, 2023-07-30 11:22:46

Given a text and search query which could consist of multiple languages lets say polish and english, you need to find whether the given search query is substring of the input text or not.

There is an added condition, you are allowed to replace any substring with its corresponding meaning in other language. For example, given the following mapping:

ó - u
ł - ou
ż - zg

You can replace ó with u and vice versa, same for ł and ż

Following are some example inputs and output as per the above mentioned mapping.

Text | Term | Result

soł | u | false

soł | ou | true

soł | ł | true

sou | ł | true

Explanation for second test case: input text is 'soł', since ł can be replaced with ou, and input text will become soou, and the search query is 'ou', the result is true.

Could anyone suggest some optimal solution for this problem.

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en4 English swordx 2023-07-31 20:31:23 8
en3 English swordx 2023-07-31 20:30:55 72
en2 English swordx 2023-07-30 11:22:46 224 (published)
en1 English swordx 2023-07-30 11:18:45 748 Initial revision (saved to drafts)