We have three arrays
A=[a1,a2,...an]
B=[b1,b2,...bn]
C=[c1,c2,...cn]

Write a method which takes these three arrays as input and return true
if there is a combination [ai,bj,ck] such that ai+bj+ck = 0.

O(n^3) solution is obvious. The questions is can we do better than
this?











Thanks & Regards
Shashank Mani

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to