Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1442. Count Triplets That Can Form Two Arrays of Equal XOR #276

Open
mah-shamim opened this issue Aug 8, 2024 Discussed in #275 · 0 comments
Open

1442. Count Triplets That Can Form Two Arrays of Equal XOR #276

mah-shamim opened this issue Aug 8, 2024 Discussed in #275 · 0 comments
Labels
medium Difficulty question Further information is requested

Comments

@mah-shamim
Copy link
Owner

Discussed in #275

Originally posted by mah-shamim August 9, 2024
Given an array of integers arr.

We want to select three indices i, j and k where (0 <= i < j <= k < arr.length).

Let's define a and b as follows:

  • a = arr[i] ^ arr[i + 1] ^ ... ^ arr[j - 1]
  • b = arr[j] ^ arr[j + 1] ^ ... ^ arr[k]

Note that ^ denotes the bitwise-xor operation.

Return the number of triplets (i, j and k) Where a == b.

Example 1:

  • Input: arr = [2,3,1,6,7]
  • Output: 4
  • Explanation: The triplets are (0,1,2), (0,2,2), (2,3,4) and (2,4,4)

Example 2:

  • Input: arr = [1,1,1,1,1]
  • Output: 10

Constraints:

  • 1 <= arr.length <= 300
  • 1 <= arr[i] <= 108
@mah-shamim mah-shamim added question Further information is requested medium Difficulty labels Aug 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
medium Difficulty question Further information is requested
Projects
None yet
Development

When branches are created from issues, their pull requests are automatically linked.

1 participant