There is no shortcut with slicing bitsets. Just work your way through the bits
a[0] = arr[0] & arr[4] & arr[8] & arr[12];
etc.
It can't take the computer long to check 16 bits, however you do it!
There is no shortcut with slicing bitsets. Just work your way through the bits
a[0] = arr[0] & arr[4] & arr[8] & arr[12];
etc.
It can't take the computer long to check 16 bits, however you do it!