🎯 Arrays & Hashing
1. Two Sum
Example 1:
Input: nums = [2,7,11,15], target = 9
Output: [0,1]
Explanation: Because nums[0] + nums[1] == 9, we return [0, 1].Example 2:
Input: nums = [3,2,4], target = 6
Output: [1,2]Example 3:
Input: nums = [3,3], target = 6
Output: [0,1]Constraints:
Follow-up:
2. Valid Anagram
Example 1:
Example 2:
Constraints:
Follow up:
3. Ransom Note
Example 1:
Example 2:
Example 3:
Constraints:
Follow up:
4. Majority Element
Example 1:
Example 2:
Constraints:
Follow up:
5. Contains Duplicate
Example 1:
Example 2:
Example 3:
Constraints:
Follow up:
6. Move Zeroes
Example 1:
Example 2:
Constraints:
Follow up:
7. Missing Number
Example 1:
Example 2:
Example 3:
Constraints:
Follow up:
8. Squares of a Sorted Array
Example 1:
Example 2:
Constraints:
Follow up:
Last updated