📅  最后修改于: 2022-03-11 15:04:27.743000             🧑  作者: Mango
// Day 6: Bitwise Operators hackerrank 10 days of javascript solution
function getMaxLessThanK(n,k){
let max = 0;
for(let i =1; i<=n; i++){
for(let j =i +1; j<=n; j++){
if((i & j) > max && (i & j) < k){
max = (i & j);
}
}
}
return max;
}