摘要:
本题,我们可以先统计出words2中所有单词中每个字母出现的最大频次;再和words1中的每个单词依次进行比较。 python class Solution: def wordSubsets(self, words1: List[str], words2: List[str]) -> List[st 阅读全文
摘要:
题目性质:分块后每个块中的最大值单调递增,可以利用单调栈求解。 我们将每个块中的最大值放入单调栈中, 最终的结果为单调栈的大小。 c ++ class Solution { const static int N = 15; public: int maxChunksToSorted(vector<i 阅读全文