Skip to content

Commit dbf6c19

Browse files
committed
rename
1 parent 0801b82 commit dbf6c19

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//coding:utf-8
2+
/*****************************************
3+
Program: maximum product of word lengths
4+
Description:
5+
6+
Date: 2016-08-29 16:31:13
7+
Last modified: 2016-08-29 16:31:48
8+
GCC version: 4.9.3
9+
*****************************************/
10+
11+
#include <vector>
12+
13+
class Solution {
14+
public:
15+
int maxProduct(vector<string>& words) {
16+
17+
}
18+
};

0 commit comments

Comments
 (0)