LC: 616. Add Bold Tag in String
https://leetcode.com/problems/add-bold-tag-in-string/
Input: s = "abcxyz123", words = ["abc","123"]
Output: "<b>abc</b>xyz<b>123</b>"Input: s = "aaabbcc", words = ["aaa","aab","bc"]
Output: "<b>aaabbc</b>c"PreviousLC: 774. Minimize Max Distance to Gas StationNextLC: 1059. All Paths from Source Lead to Destination
Last updated