fork download
  1. <?php
  2.  
  3. function skill($x, $y) {
  4. return (~$x & $y | $x & ~$y) == 0;
  5. }
  6.  
  7. function unskill($x, $y) {
  8. return ~$x & $y | $x & ~$y == 0;
  9. }
  10.  
  11. var_dump(unskill(0, 1) == skill(0, 1));
Success #stdin #stdout 0.02s 24452KB
stdin
Standard input is empty
stdout
bool(false)