Get personalized AI feedback to ace LeetCode and nail your interviews.
Two Sum
EasyGiven an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.
Your solution is correct and optimal!
You're using a hash map to track seen values, which gives you O(n) time complexity.
Time & Space Analysis:
- Time Complexity: O(n) - single pass through array
- Space Complexity: O(n) - hash map storage
Similar Problems to Try: