LeetCode 15.
```java class Solution { public List<List> threeSum(int[] nums) { Arrays.sort(nums); //nlogn List<List> result = new ArrayLis...
```java class Solution { public List<List> threeSum(int[] nums) { Arrays.sort(nums); //nlogn List<List> result = new ArrayLis...
Question ``` Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers such that they add up to a specifi...
Question ``` Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers such that they add up to a specifi...
Complexity Time complexity: O(n)
Complexity Time complexity: O(n)