Skip to content

Latest commit

 

History

History

4sum_problem

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
Given four integer arrays nums1, nums2, nums3, and nums4 all of length n, return the number of tuples (i, j, k, l) such that:

> 0 <= i, j, k, l < n
> nums1[i] + nums2[j] + nums3[k] + nums4[l] == 0