Bit Thinking Problems¶
Table of Contents¶
- 2546. Apply Bitwise Operations to Make Strings Equal (Medium)
- 1558. Minimum Numbers of Function Calls to Make Target Array (Medium)
- 2571. Minimum Operations to Reduce an Integer to 0 (Medium)
- 3315. Construct the Minimum Bitwise Array II (Medium)
- 2568. Minimum Impossible OR (Medium)
- 2509. Cycle Length Queries in a Tree (Hard)
- 2939. Maximum Xor Product (Medium)
- 2749. Minimum Operations to Make the Integer Zero (Medium)
- 2835. Minimum Operations to Form Subsequence With Target Sum (Hard)
- 2897. Apply Operations on Array to Maximize Sum of Squares (Hard)
- 810. Chalkboard XOR Game (Hard)
- 3064. Guess the Number Using Bitwise Questions I (Medium) 👑
- 3094. Guess the Number Using Bitwise Questions II (Medium) 👑
2546. Apply Bitwise Operations to Make Strings Equal¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: string, bit manipulation
1558. Minimum Numbers of Function Calls to Make Target Array¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, greedy, bit manipulation
2571. Minimum Operations to Reduce an Integer to 0¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: dynamic programming, greedy, bit manipulation
3315. Construct the Minimum Bitwise Array II¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, bit manipulation
2568. Minimum Impossible OR¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, bit manipulation, brainteaser
2509. Cycle Length Queries in a Tree¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, tree, binary tree
2939. Maximum Xor Product¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: math, greedy, bit manipulation
2749. Minimum Operations to Make the Integer Zero¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: bit manipulation, brainteaser, enumeration
2835. Minimum Operations to Form Subsequence With Target Sum¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, greedy, bit manipulation
2897. Apply Operations on Array to Maximize Sum of Squares¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, hash table, greedy, bit manipulation
810. Chalkboard XOR Game¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, math, bit manipulation, brainteaser, game theory
3064. Guess the Number Using Bitwise Questions I¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: bit manipulation, interactive
3094. Guess the Number Using Bitwise Questions II¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: bit manipulation, interactive