LeetCode 318 Maximum Product of Word Lengths 题解
1.题目:
Given a string array words, find the maximum value of length(word[i]) * length(word[j]) where the two words do not share common letters. You may assume that each word will contain only lower case letters. If no such two words exist, return 0.
Example 1:
Given [“abcw”, “baz”, “foo”, “bar”, “xtfn”, “abcdef”]
Return 16
The two words can be “abcw”, “xtfn”.
Example 2:
Given [“a”, “ab”, “abc”, “d”, “cd”, “bcd”, “abcd”]
Return 4
The two words can be “ab”, “cd”.
Example 3:
Given [“a”, “aa”, “aaa”, “aaaa”]
Return 0
题意:
输入一个字符串数组,输出可以返回的两个字符串长度的最大乘积,要求这两个字符串没有用到重复的数组。
2.解题思路:
感觉我是暴力过的TUT。放上没有AC,和小改动就AC的代码
3.代码
1 |
|