Skip to content

Instantly share code, notes, and snippets.

@lawrencefmm
Last active May 3, 2019 18:29
Show Gist options
  • Save lawrencefmm/d0209f7b1dd7514590aba05768ff49b9 to your computer and use it in GitHub Desktop.
Save lawrencefmm/d0209f7b1dd7514590aba05768ff49b9 to your computer and use it in GitHub Desktop.
bool ligado(int n, int j)
{
if(n & (1 << j)) return true;
else return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment