Bit LogTrick¶
Table of Contents¶
- 3097. Shortest Subarray With OR at Least K II (Medium)
- 2411. Smallest Subarrays With Maximum Bitwise OR (Medium)
- 3209. Number of Subarrays With AND Value of K (Hard)
- 3171. Find Subarray With Bitwise OR Closest to K (Hard)
- 1521. Find a Value of a Mysterious Function Closest to Target (Hard)
- 898. Bitwise ORs of Subarrays (Medium)
3097. Shortest Subarray With OR at Least K II¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, bit manipulation, sliding window
2411. Smallest Subarrays With Maximum Bitwise OR¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, binary search, bit manipulation, sliding window
3209. Number of Subarrays With AND Value of K¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, binary search, bit manipulation, segment tree
3171. Find Subarray With Bitwise OR Closest to K¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, binary search, bit manipulation, segment tree
1521. Find a Value of a Mysterious Function Closest to Target¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, binary search, bit manipulation, segment tree
898. Bitwise ORs of Subarrays¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, dynamic programming, bit manipulation