Question: python Write a function, called constrained MatchPair which takes three arguments: a tuple representing starting points for the first substring, a tuple representing starting points
python
Write a function, called constrained MatchPair which takes three arguments: a tuple representing starting points for the first substring, a tuple representing starting points for the second substring, and the length of the first substring. The function should return a tuple of all members (call it n) of the first tuple for which there is an element in the second tuple (call it k) such that n+m+1 = k, where m is the length of the first substring. Complete the definition def constrainedMatch Pair(firstMatch, secondMatch, length): To test this function, we have provided a function called subStringMatchOneSub, which takes two arguments: a target string and a key string. This function will return a tuple of all starting points of matches of the key to the target, such that at most one element of the key is incorrectly matched to the target. This function is provided for you in the file ps3_template.py and invokes the function you are to write
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
