category-wise-problems

contains category wise problems(data structures, competitive) of popular platforms.

View the Project on GitHub mayankdutta/category-wise-problems

1835. Find XOR Sum of All Pairs Bitwise AND

method 1
implementation ```cpp class Solution { public: int getXORSum(vector& arr1, vector& arr2) { using ll = long long int; ll one = 0; ll two = 0; for (auto& i: arr1) one ^= i; for (auto& i: arr2) two ^= i; return (one & two); } }; ``` </details> ##### method 2