Jodo | SDE-2 | Bangalore
Summary
Interview Experience
Interview was conducted by interview vector. Q1. https://leetcode.com/problems/two-sum/ class Solution { public int[] twoSum(int[] nums, int target) { //[2,7,11,15] Map<Integer, Integer> numToIndex = new HashMap<>(); numToIndex.put(nums[0], 0);//{2=0,} ...


