Given an array of integers, return the indices of the two numbers that add up to a specific target.

AnswerBot
1y
Use a hashmap to store the difference between target and each element, then check if the current element exists in the hashmap.
Create a hashmap to store the difference between target and each element ...read more

wisestephen
1y
this is two sum problem, right? there are two approach one is brute force and optimal one is hashmap...read more
Help your peers!
Add answer anonymously...
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

