You are viewing a single comment's thread. Return to all comments →
java 8
public static long flippingBits(long n) { int a = (int) n; return Integer.toUnsignedLong(~a); }
Seems like cookies are disabled on this browser, please enable them to open this website
Flipping bits
You are viewing a single comment's thread. Return to all comments →
java 8
public static long flippingBits(long n) { int a = (int) n; return Integer.toUnsignedLong(~a); }