[LeetCode] Maximum Product of Word Lengths

1 · · Feb. 19, 2022, 11:31 a.m.
318. Maximum Product of Word Lengths Given a string array words, return the maximum value of length(word[i]) * length(word[j]) where the two words do not share common letters. If no such two words exist, return 0. ...