Pinned Loading
-
Set Mismatch - LeetCode - Days 44 & 45
Set Mismatch - LeetCode - Days 44 & 45 1[Question](https://leetcode.com/problems/set-mismatch/description)
23# Intuition4Use a Set to store all unique numbers in the array and detect the duplicate.
5 -
Decode XORed Array - LeetCode - Day 46
Decode XORed Array - LeetCode - Day 46 1[Question](https://leetcode.com/problems/decode-xored-array/description)
23# Intuition4If we play around with the XOR (^) relationship between numbers:
5 -
Two Out of Three - LeetCode - Day 47
Two Out of Three - LeetCode - Day 47 1[Question](https://leetcode.com/problems/two-out-of-three/description)
23# Intuition4Convert each array to a Set and find the intersection between the sets.
5 -
Construct the Minimum Bitwise Array ...
Construct the Minimum Bitwise Array I - LeetCode - Day 48 1[Question](https://leetcode.com/problems/construct-the-minimum-bitwise-array-i/description)
23# Intuition4- The bitwise OR of two consectutive numbers will always give an odd number. Therefore, if any element in the `nums` array is even, then it is impossible to find two consecutive numbers that can be successfully OR-ed together to get that value.
5 -
Minimum Operations to Equalize Array...
Minimum Operations to Equalize Array - LeetCode - Day 49 1[Question](https://leetcode.com/problems/minimum-operations-to-equalize-array/description)
23# Intuition4In a single operation, we can choose the entire array as the subarray, AND all its elements to get the value of the bitwise AND, then replace each element in the array with this value, making the entire array equal.
5 -
Minimum Number of Flips to Reverse B...
Minimum Number of Flips to Reverse Binary String - LeetCode - Days 50 & 51 1[Question](https://leetcode.com/problems/minimum-number-of-flips-to-reverse-binary-string/description)
23# Intuition4Is there a way to check and compare the bits of the number without having to generate its binary string and reverse it?
5
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.



