Embolden - Google Top Interview Questions


Problem Statement :


Given a string text and a list of strings patterns, implement an embolden function where all substrings in text that match any string in patterns are wrapped in <b> and </b> tags. 
If two patterns are adjacent or overlap, they should be merged into one tag.

Constraints

n < 5000 where n is the length of text

m < 100 where m is the length of patterns

Example 1

Input

text = "abcdefg"

patterns = ["bc", "ef"]

Output

"a<b>bc</b>d<b>ef</b>g"

Explanation

bc and ef match the text and are wrapped in <b> and </b> tags.



Example 2

Input

text = "abcdefg"

patterns = ["bc", "de"]

Output

"a<b>bcde</b>fg"

Explanation

If two patterns are adjacent or overlap, they should be merged into one tag.



Solution :



title-img




                        Solution in C++ :

string solve(string text, vector<string>& patterns) {
    vector<vector<int>> intervals;
    int N = text.size();
    for (int i = 0; i < N; i++) {
        for (auto& p : patterns) {
            if (p.size() <= N - i && text.compare(i, p.size(), p) == 0) {
                if (intervals.empty()) {
                    intervals.push_back({i, i + p.size() - 1});
                } else {
                    if (intervals.back()[1] >= i - 1)
                        intervals.back()[1] = i + p.size() - 1;
                    else
                        intervals.push_back({i, i + p.size() - 1});
                }
            }
        }
    }

    string ans;
    int idx = 0;
    for (int i = 0; i < intervals.size(); i++) {
        ans.append(text.substr(idx, intervals[i][0] - idx));
        ans.append("<b>");
        ans.append(text.substr(intervals[i][0], intervals[i][1] - intervals[i][0] + 1));
        ans.append("</b>");
        idx = intervals[i][1] + 1;
    }
    if (idx < text.size()) {
        ans.append(text.substr(idx));
    }
    return ans;
}
                    




                        Solution in Python : 
                            
class Solution:
    def solve(self, text, patterns):
        n = len(text)
        bolded = [False] * n

        for pat in patterns:
            start = text.find(pat)

            while start != -1:
                for i in range(start, start + len(pat)):
                    bolded[i] = True

                start = text.find(pat, start + 1)

        ans = []
        idx = 0

        while idx < n:
            if bolded[idx]:
                ans.append("<b>")

                while idx < n and bolded[idx]:
                    ans.append(text[idx])
                    idx += 1

                ans.append("</b>")
            else:
                ans.append(text[idx])
                idx += 1

        return "".join(ans)
                    


View More Similar Problems

Super Maximum Cost Queries

Victoria has a tree, T , consisting of N nodes numbered from 1 to N. Each edge from node Ui to Vi in tree T has an integer weight, Wi. Let's define the cost, C, of a path from some node X to some other node Y as the maximum weight ( W ) for any edge in the unique path from node X to Y node . Victoria wants your help processing Q queries on tree T, where each query contains 2 integers, L and

View Solution →

Contacts

We're going to make our own Contacts application! The application must perform two types of operations: 1 . add name, where name is a string denoting a contact name. This must store name as a new contact in the application. find partial, where partial is a string denoting a partial name to search the application for. It must count the number of contacts starting partial with and print the co

View Solution →

No Prefix Set

There is a given list of strings where each string contains only lowercase letters from a - j, inclusive. The set of strings is said to be a GOOD SET if no string is a prefix of another string. In this case, print GOOD SET. Otherwise, print BAD SET on the first line followed by the string being checked. Note If two strings are identical, they are prefixes of each other. Function Descriptio

View Solution →

Cube Summation

You are given a 3-D Matrix in which each block contains 0 initially. The first block is defined by the coordinate (1,1,1) and the last block is defined by the coordinate (N,N,N). There are two types of queries. UPDATE x y z W updates the value of block (x,y,z) to W. QUERY x1 y1 z1 x2 y2 z2 calculates the sum of the value of blocks whose x coordinate is between x1 and x2 (inclusive), y coor

View Solution →

Direct Connections

Enter-View ( EV ) is a linear, street-like country. By linear, we mean all the cities of the country are placed on a single straight line - the x -axis. Thus every city's position can be defined by a single coordinate, xi, the distance from the left borderline of the country. You can treat all cities as single points. Unfortunately, the dictator of telecommunication of EV (Mr. S. Treat Jr.) do

View Solution →

Subsequence Weighting

A subsequence of a sequence is a sequence which is obtained by deleting zero or more elements from the sequence. You are given a sequence A in which every element is a pair of integers i.e A = [(a1, w1), (a2, w2),..., (aN, wN)]. For a subseqence B = [(b1, v1), (b2, v2), ...., (bM, vM)] of the given sequence : We call it increasing if for every i (1 <= i < M ) , bi < bi+1. Weight(B) =

View Solution →