Skip to content

Instantly share code, notes, and snippets.

@lgarczyn
Created August 10, 2016 08:41
Show Gist options
  • Save lgarczyn/fd5b6164d9122e2c53015714b6309c1e to your computer and use it in GitHub Desktop.
Save lgarczyn/fd5b6164d9122e2c53015714b6309c1e to your computer and use it in GitHub Desktop.
unsigned int average(unsigned int a, unsigned int b)
{
return (a & b) + ((a ^ b) >> 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment