I like this idea. I find it fascinating how many developers I've interviewed who still have not come across FizzBuzz, and how many of those cannot solve the problem. Some of the more interesting interviews I've given though have been with people who know the FizzBuzz problem, where I ask them to make the worst possible version of it that they can. It turns out to be more difficult than they think it will be, and a de…
Fifty Fizzbuzzes
41–50 of 64 posts
Re: Fifty Fizzbuzzes
#42Re: Fifty Fizzbuzzes
#43I feel like everyone leaving a fizzbuzz solution in the comments of this post is missing the point of this article...
Re: Fifty Fizzbuzzes
#44Vi's site is down from the onslaught. In the meantime, enjoy the ever-classic Fizz Buzz Enterprise Edition: https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...
https://github.com/jongeorge1/FizzBuzzEnterpriseEdition-CSha...
Re: Fifty Fizzbuzzes
#45Vi's site is down from the onslaught. In the meantime, enjoy the ever-classic Fizz Buzz Enterprise Edition: https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...
I opened the link thinking ”hah, what a gag!” But then I thought it’d be funny to try to find the core fizzbuzz logic. Turns out that it hits way too close to home, I just got really annoyed. Not sure what I expected.
The point is that there is no "core" logic anymore. It's been broken down and spread out over a dozen files, each of which does "one and only one (tiny) thing" according to the "best practices" of problem decomposition. Then all the pieces are glued together again using design patterns.
Re: Fifty Fizzbuzzes
#46Vi's site is down from the onslaught. In the meantime, enjoy the ever-classic Fizz Buzz Enterprise Edition: https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...
I opened the link thinking ”hah, what a gag!” But then I thought it’d be funny to try to find the core fizzbuzz logic. Turns out that it hits way too close to home, I just got really annoyed. Not sure what I expected.
Re: Fifty Fizzbuzzes
#47Earlier quoted context omitted.
Using WordPress is "over-engineering"?
Yes
But using Wordpress is no more overengineering than buying a car. (Versus building your own 2 stroke engine because it's simpler).
Re: Fifty Fizzbuzzes
#48 {:[~x!15;"fizzbuzz";~x!3;"fizz";~x!5;"buzz";$x]}'1+!100
{:[0Re: Fifty Fizzbuzzes
#49Vi's site is down from the onslaught. In the meantime, enjoy the ever-classic Fizz Buzz Enterprise Edition: https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpris...
Also FizzBuzz in TensorFlow: http://joelgrus.com/2016/05/23/fizz-buzz-in-tensorflow/
Re: Fifty Fizzbuzzes
#50Here's mine: Array.from(new Array(100)).forEach((_, i)=>++i&&console.log(((i%3?"":"Fizz")+(i%5?"":"Buzz"))||i)) https://twitter.com/tracker1/status/1045475226128007169
https://github.com/skx/gobasic/blob/master/examples/15-fizz-...
Perhaps not the cleanest, since I support neither `CASE` nor `ELSE IF`. But it seems to be correct.