class Solution { public int threeSumSmaller(int[] nums, int target) { int count = 0; Arrays.sort(nums); for(int i=0; i