Quotes help make search much faster. Example: "Practice Makes Perfect"

Saturday, December 10, 2016

Codefights killKthBit


//sample solution
function killKthBit(n, k) {
  return (n & ~(1 << k-1)) >>> 0;
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts