第二题题目写的是按位与,文字中给的时OR |,说的又是与 测试用例等于白给,查询为YES的都是插入的原值 我按照按位与来搞的,最后还是10% 按位与: ``` public static boolean contain(Set<Integer> set, int target) { if (set.contains(target)) return true; Set<Integer> select = new HashSet<>(set); for (int i = 0; i < 32; i++) { //target对应位...