标签: arrays algorithm data-structures bit-manipulation
给出一个正整数数组,在所有子数组中找到最接近给定正整数'P'的子数组的按位与。
解决方案显然可以在O(n ^ 2)中找到,但是我们可以做得更好吗?