Title: Google - Software Engineer (Backend) - Onsite Loop
Description:
- Education: Masters
- Years of Experience (YOE): 7
- Questions Asked:
- System Design: Design a scalable URL shortening service (like Bitly).
- Coding Round:
- Two Sum Problem:
- Example 1:
- Input:
nums = [2, 7, 11, 15], target =9 - Output:
[0, 1] - Explanation:
nums[0] + nums[1] == 9
- Input:
- Example 2:
- Input:
nums = [3, 2, 4], target =6 - Output:
[1, 2]
- Input:
- Example 1:
- Two Sum Problem: