Skip to content

Instantly share code, notes, and snippets.

@nhzc123
nhzc123 / leetcode
Last active December 10, 2015 22:18
/**---------------------------------------------------------------------------------------------------
*3SUM
*
*
**/
class Solution {
public:
vector<vector<int> > threeSum(vector<int> &num) {