func brLessThan(x, y uint64) bool { var ( diff = x ^ y loBit = diff & -diff ) return x&loBit == 0 }
To receive a hint, submit unfixed code.