Skip to content

Instantly share code, notes, and snippets.

@sedera-tax
Created June 9, 2020 07:55
Show Gist options
  • Save sedera-tax/3d1a63b17d2ea302a9f3837be0d4ae84 to your computer and use it in GitHub Desktop.
Save sedera-tax/3d1a63b17d2ea302a9f3837be0d4ae84 to your computer and use it in GitHub Desktop.
<?php
function killKthBit($n, $k) {
return (strlen(base_convert((string) $n,10,2))-$k >= 0) ? (int) base_convert(substr_replace(base_convert((string) $n,10,2),'0',strlen(base_convert((string) $n,10,2))-$k,1),2,10) : (int) $n;
}
echo killKthBit(2147483647, 31);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment