diff --git a/php/fizzbuzzImproved.php b/php/fizzbuzzImproved.php new file mode 100644 index 0000000..db476e0 --- /dev/null +++ b/php/fizzbuzzImproved.php @@ -0,0 +1,73 @@ + 0){ + print($messages[$value]."\n"); + }else{ + print($i."\n"); + } + $queueMask = $queueMask >> 2 | $value << 28; + } +} +fizzbuzz(100); + +/* +TBA: This solution is difficult to grok and only serves one purpose... +to confuse the hell out of any one giving you a programming test. +*/ \ No newline at end of file