Skip to content

Instantly share code, notes, and snippets.

@ranman
Created October 2, 2012 03:21
Show Gist options
  • Select an option

  • Save ranman/3815977 to your computer and use it in GitHub Desktop.

Select an option

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

ranman commented Sep 3, 2013

Copy link
Copy Markdown
Author

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