Swizec Teller - a geek with a hatswizec.com

Senior Mindset Book

Get promoted, earn a bigger salary, work for top companies

Senior Engineer Mindset cover
Learn more

    Fizzbuzz without ifs in 90 char. I will buy you a beer if you can do better.

    Yesterday I got nerd sniped into solving the FizzBuzz problem without using if sentences.

    Unfortunately, a more careful inspection of the problem specification reveals this solution was incorrect.

    Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".

    Luckily, that's a very simple fix:

    # codegolf version (90 characters):
    [{0:"fizzbuzz"}.get(x%(3*5),{0:"fizz"}.get(x%3,{0:"buzz"}.get(x%5,x)))for x in range(101)]
    
    # slightly more readable:
    [{0: "fizzbuzz"}.get(x%(3*5),
                         {0: "fizz"}.get(x%3,
                                         {0: "buzz"}.get(x%5, x)))
     for x in range(101)]
    

    There you have it, a solution to the fizzbuzz problem that relies on python's interactive command line interpreter thingy to do the printing, so it shave off 4 characters for print.

    The "trick", if it can be called that, is relying on the native get method to return the correct string or fall back to the default value, which checks for the next string in the if-then-else chain.

    I wish never to see code like that in something I have to maintain. Ever :)

    The challenge

    Your challenge, should you choose to accept it, is to produce a shorter fizzbuzz solution without using if sentences. I will buy a bottle of beer for the winner.

    The best Scala solution so far is 106 characters.

    // tweet deleted

    No really, I will send a bottle of beer anywhere in the world if you write a shorter solution. Of course, if feasible, I would prefer to take you out for a beer than use snail mail :)

    Beer bottles by photos for fun
    Beer bottles by photos for fun
    Published on September 17th, 2012 in Uncategorized

    Did you enjoy this article?

    Continue reading about Fizzbuzz without ifs in 90 char. I will buy you a beer if you can do better.

    Semantically similar articles hand-picked by GPT-4

    Senior Mindset Book

    Get promoted, earn a bigger salary, work for top companies

    Learn more

    Have a burning question that you think I can answer? Hit me up on twitter and I'll do my best.

    Who am I and who do I help? I'm Swizec Teller and I turn coders into engineers with "Raw and honest from the heart!" writing. No bullshit. Real insights into the career and skills of a modern software engineer.

    Want to become a true senior engineer? Take ownership, have autonomy, and be a force multiplier on your team. The Senior Engineer Mindset ebook can help 👉 swizec.com/senior-mindset. These are the shifts in mindset that unlocked my career.

    Curious about Serverless and the modern backend? Check out Serverless Handbook, for frontend engineers 👉 ServerlessHandbook.dev

    Want to Stop copy pasting D3 examples and create data visualizations of your own? Learn how to build scalable dataviz React components your whole team can understand with React for Data Visualization

    Want to get my best emails on JavaScript, React, Serverless, Fullstack Web, or Indie Hacking? Check out swizec.com/collections

    Did someone amazing share this letter with you? Wonderful! You can sign up for my weekly letters for software engineers on their path to greatness, here: swizec.com/blog

    Want to brush up on your modern JavaScript syntax? Check out my interactive cheatsheet: es6cheatsheet.com

    By the way, just in case no one has told you it yet today: I love and appreciate you for who you are ❤️

    Created by Swizec with ❤️