Three Pointers¶
Table of Contents¶
- 2367. Number of Arithmetic Triplets (Easy)
- 2563. Count the Number of Fair Pairs (Medium)
- 795. Number of Subarrays with Bounded Maximum (Medium)
- 2444. Count Subarrays With Fixed Bounds (Hard)
- 3347. Maximum Frequency of an Element After Performing Operations II (Hard)
- 1213. Intersection of Three Sorted Arrays (Easy) 👑
2367. Number of Arithmetic Triplets¶
-
LeetCode | LeetCode CH (Easy)
-
Tags: array, hash table, two pointers, enumeration
2563. Count the Number of Fair Pairs¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, two pointers, binary search, sorting
795. Number of Subarrays with Bounded Maximum¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, two pointers
2444. Count Subarrays With Fixed Bounds¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, queue, sliding window, monotonic queue
3347. Maximum Frequency of an Element After Performing Operations II¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, binary search, sliding window, sorting, prefix sum
1213. Intersection of Three Sorted Arrays¶
-
LeetCode | LeetCode CH (Easy)
-
Tags: array, hash table, binary search, counting