Skip to content

Instantly share code, notes, and snippets.

@ranman
Created October 2, 2012 03:21
Show Gist options
  • Save ranman/3815977 to your computer and use it in GitHub Desktop.
Save ranman/3815977 to your computer and use it in GitHub Desktop.
awesome fizzbuzz
messages = [None, "Fizz", "Buzz", "FizzBuzz"]
acc = 810092048
for i in xrange(1, 101):
c = acc & 3
print messages[c] if c else i
acc = acc >> 2 | c << 28
@ranman
Copy link
Author

ranman commented Sep 3, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment