thepurpleowl / House-of-Codes

A repository to collect the solutions to all Competitive platform problems, only to be used as reference/practice.
9 stars 30 forks source link

Added solution to LeetCode problem #15_3Sum in Python #63

Closed carolinejoseph closed 3 years ago

carolinejoseph commented 3 years ago

Platform: LeetCode

Problem No: 15

Problem Statement: Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Notice that the solution set must not contain duplicate triplets.

Language solved in: Python