Skip to content

Instantly share code, notes, and snippets.

@yphastos
Last active March 7, 2019 00:55
Show Gist options
  • Save yphastos/6747e99b2c96c1d4e219af47f28ec231 to your computer and use it in GitHub Desktop.
Save yphastos/6747e99b2c96c1d4e219af47f28ec231 to your computer and use it in GitHub Desktop.
secondRightmostZeroBit
int secondRightmostZeroBit(int n)
{
return ~(n|=n+1) & -~n ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment