Hash Table
Link: https://leetcode.com/problems/two-sum/
Code:
class Solution {
public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
if (map.containsKey(target - nums[i])) {
return new int[] { map.get(target - nums[i]), i };
}
map.put(nums[i], i);
}
return new int[] {};
}
}
containsKey(key)
returnstrue
if the map contains a mapping for the key.put(key, value)
inserts the key-value pair into the map.
Longest Substring Without Repeating Characters
See https://notes.jinjunliu.com/8_leetcode/8.2_string/#longest-substring-without-repeating-characters
Last updated