#fizzbuzz — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #fizzbuzz, aggregated by home.social.
-
In der Serie "Named Problems" stelle ich dir klassische, namentlich bekannte Algorithmus-Probleme vor, die seit Jahrzehnten in Ausbildung, Studium und Interviews verwendet werden. Anhand verständlicher Problemstellungen wie FizzBuzz, Türme von Hanoi oder dem Sieb des Eratosthenes lernst du hier, a
https://magicmarcy.de/fizzbuzz-der-einstieg-in-bedingungen-und-kontrollfluss
#FizzBuzz #Teilbarkeit #Reihenfolge #Kontrollfluss #Modulo #Coding #Programming #Java #NamendProblems
-
_In der Serie "Named Problems" stelle ich dir klassische, namentlich bekannte Algorithmus-Probleme vor, die seit Jahrzehnten in Ausbildung, Studium und Interviews verwendet werden. Anhand verständlicher Problemstellungen wie FizzBuzz, Türme von Hanoi oder dem Sieb des Eratosthenes lernst du hier,
https://magicmarcy.de/fizzbuzz-der-einstieg-in-bedingungen-und-kontrollfluss
#FizzBuzz #Teilbarkeit #Reihenfolge #Kontrollfluss #Modulo #Coding #Programming #Java #NamendProblems
-
2/ FizzBuzz in three lines of APL. Note that the composite 'FizzBuzz' string is not mentioned, which I consider a triumph of parsimony.
-
2/ FizzBuzz in three lines of APL. Note that the composite 'FizzBuzz' string is not mentioned, which I consider a triumph of parsimony.
-
If you’re not using a Fourier series to solve FizzBuzz, are you even overengineering correctly?
https://susam.net/fizz-buzz-with-cosines.html#cosines #fizzbuzz #programming
-
If you’re not using a Fourier series to solve FizzBuzz, are you even overengineering correctly?
https://susam.net/fizz-buzz-with-cosines.html#cosines #fizzbuzz #programming
-
Oh, look! Another tech bro pondering the existential dilemma of trusting Skynet with #FizzBuzz 🤖🎉. Apparently, the path to utopia is paved with unchecked #algorithms and a sprinkle of "verification" magic. 🌈 Good luck surviving the AI apocalypse with your newfound enlightenment! 🙃
https://peterlavigne.com/writing/verifying-ai-generated-code #techbro #AIapocalypse #existentialdread #verificationmagic #HackerNews #ngated -
In a galaxy where #CSS is the universal Swiss army knife 🔧, behold the peak of absurdity: Fizz Buzz in CSS! 🎉 Why use #JavaScript when you can torture CSS into doing things it was never meant for, because who needs sanity anyway? 🙃
https://susam.net/fizz-buzz-in-css.html #FizzBuzz #absurdity #creativity #webdevelopment #HackerNews #ngated -
Implementing FizzBuzz in Rust (for no reason)
-
A novel take on the #FizzBuzz problem! ❤️💕
Fizz Buzz with Cosines https://susam.net/fizz-buzz-with-cosines.html #programming
-
solving #fizzbuzz using trigonometry and Fourier Transform: https://susam.net/fizz-buzz-with-cosines.html
here is an #fsharp version
😎 -
Solving Fizz Buzz with Cosines
https://susam.net/fizz-buzz-with-cosines.html
#HackerNews #FizzBuzz #Cosines #Programming #Math #Coding #Challenge
-
Ah yes, the age-old quest for #programming enlightenment: writing Fizz Buzz without so much as a hint of logic 🙄. Our intrepid coder Evan has managed to turn the venerable challenge into a Pythonic #circus act, cycling through sequences like a caffeine-fueled hamster on a wheel 🚴♂️. Who needs simplicity when you can overcomplicate everything with itertools? 🤹♂️
https://evanhahn.com/fizz-buzz-without-conditionals-or-booleans/ #FizzBuzz #Python #coding #itertools #HackerNews #ngated -
Fizz Buzz without conditionals or booleans
https://evanhahn.com/fizz-buzz-without-conditionals-or-booleans/
#HackerNews #FizzBuzz #FizzBuzzChallenge #Programming #Tricks #Coding #WithoutConditionals #CreativeCoding
-
🦜 Ah, the age-old ritual of coding interviews, where #FizzBuzz is summoned like the ghost of programming past. 🧙♂️ Our hero bravely faces Dana, the interviewer, with a magical incantation of #JavaScript gibberish that might impress a flock of birds, but not a single human. 🐦✨
https://joshmoody.org/blog/programming-with-less-than-nothing/ #codinginterviews #programminghumor #techculture #HackerNews #ngated -
👶✨ Oh, look! Someone's discovered type checking and decided to bless us with a toddler-level #tutorial on the concept! 🎓 After all, who doesn't love a good "Fizzbuzz" reference when pretending to revolutionize #Python type annotations? 🙄
https://austinhenley.com/blog/babytypechecker.html #typechecking #Fizzbuzz #codinghumor #programming #HackerNews #ngated -
It really looks like the #intern who wrote this code wouldn't have passed a #fizzbuzz with flying colors. The tool should get its configuration from the filesystem, but then it prevents configurability by validating the configuration against a bunch of hard-coded assumptions.
I think the bare minimum for making an intern's experience worthwhile is code reviews from experienced engineers. Having an intern make junk that kinda works is just kicking tech debt down the road.
-
#programming #commonLisp #emacs #repl versus #orgmode for the #fizzbuzz challenge on #medium.
Using #series #lazyEvaluation
https://medium.com/@screwlisp/fizzbuzz-battle-orgmode-versus-the-repl-for-lazy-lisp-series-an-emacs-story-b98f633a20d8
I think it ended up pretty interesting, and what you would expect. The repl is a better interactive experience, but the noweb tangle optimizes in ways the separate repl lines can't, and is already in a disk-persisted file.Looking forward to feedback and commentary ( @ksaj ;p)
-
What a journey ! It was more riveting than GoT !!
https://kranga.notion.site/The-fizzbuzz-that-did-not-get-me-the-job-180e7c22ef3b80c3a386f7f8de720ac7
-
[Перевод] FizzBuzz, который не помог мне найти работу
Fizzbuzz — это простой алгоритм, который когда-то был популярен в контексте технических собеседований. Я знал, что это такое, но до прошлой недели меня ни разу не просили написать его. Базовый алгоритм очень прост, но смысл упражнения в том, что собеседующий добавляет новые правила, чтобы проверить, как вы будете дополнять код, обеспечивая при этом его читаемость и удобство поддержки. Базовую реализацию fizzbuzz можно написать однострочником на Typescript: const fizzbuzz = (n: number)=>`${n%3 ? '' : 'Fizz'}${n%5 ? '' : 'Buzz'}`; Во время собеседования меня попросили написать fizzbuzz на любом близком мне языке; собеседующий даже сказал, что можно использовать эзотерические языки программирования, но рекомендовал не делать этого, потому что некоторые правила реализовать будет сложно. Этого вполне можно было ожидать, ведь собеседование могло длиться до 45 минут, а обсуждать простой fizzbuzz особого смысла не было. Менять язык программирования после начала собеседования тоже было запрещено.
https://habr.com/ru/companies/ruvds/articles/876916/
#fizzbuzz #техническое_собеседование #задачи_на_собеседованиях #собеседования #рефакторинг #отладка #ruvds_перевод
-
WTF?! This story can't be real.
The #FizzBuzz that did not get me the job https://kranga.notion.site/The-fizzbuzz-that-did-not-get-me-the-job-180e7c22ef3b80c3a386f7f8de720ac7 #developerjobs
-
@reconbot When you get some digits built, try making them display FizzBuzz.
-
Viz the discussion of #memory and #programming and memories of Richard C. Waters' memory and programming,
I adopted Waters' #MIT #AI Memo on #Series for lispmoo2 (#MOO DSL in lisp).
https://lispy-gopher-show.itch.io/lispmoo2/devlog/835106/richard-waters-series-and-lispmoo2
#itch_ioI used it to solve #fizzbuzz in my first lazy experience ever. It's about 10% better than me using the loop facility. #lispGames #lisp #commonLisp
https://dspace.mit.edu/bitstream/handle/1721.1/6035/AIM-1082.pdf?sequence=2&isAllowed=y
-
Next week I'm going to start some training sessions for new #SAP #abap developers who have started the group's graduate training programme.
They are quite diverse, and I think we'll start with a little background about being a consultant - which may interest some of them to defect to my side of the group later on!
Home work will consist of three small challenges, of which I will include #fizzbuzz
-
Fizzbuzz: You do realise the 'programmer quiz' version of the game isn't the game, right? Sequence goes: One, two, buzz, four, fizz, buzz, seven, eight, buzz, fizz, eleven, buzz, buzzteen, fourteen, fizzbuzz, buzzteen, seventeen, buzz, buzzteen, fizz, buzz, twenty-two, twenty-buzz, buzz, fizz, twenty-buzz, buzz, twenty-eight, twenty-buzz, fizzbuzz, buzzty-one, buzzty-two, buzz, buzzty-four, buzzty-fizz, buzz, buzzty-seven, buzzty-eight, buzz, fizz, forty-one, buzz, forty-buzz…
-
[Перевод] find + mkdir полны по Тьюрингу
Введение Мы покажем, что система, имеющая лишь команды GNU find и mkdir , полна по Тьюрингу. Хорошо известно, что команды sed и awk сами по себе полны по Тьюрингу, но мне не удалось найти информации о Тьюринг-полноте find + mkdir . Доказательство основано на реализации таг-системы . Мы по порядку рассмотрим реализацию цикла, FizzBuzz и таг-системы.
https://habr.com/ru/articles/837280/
#полнота_по_тьюрингу #машина_тьюринга #mkdir #find #gnu #регулярные_выражения #fizzbuzz
-
“How to align text to left”
Normal language: text.setAlignment(LEFT)
Java: ((DefaultTextAlignementModel)text.getDefaultAlignmentModel()).setAlignmentModel(AlignmentModelFactory.createNew(AlignmentModel.LEFT))
-
Yeah, I went there. Because, why not?
Test-driving fizzbuzz in bash - https://swalchemist.wordpress.com/2024/06/01/test-driving-fizzbuzz-in-bash/
-
[Перевод] Новый рекорд производительности FizzBuzz
283 ГБ/с на AMD Ryzen 9 7700X. Сборка (протестирована с GCC 13): g++ fizzbuzz.cc -march=native -o fizzbuzz -O3 -Wall -std=c++20 -fno-tree-vectorize -fno-exceptions На сборку уходит несколько минут. В зависимости от CPU можно добиться повышенной производительности с -fno-tree-vectorize или без этого ключа.
https://habr.com/ru/articles/794925/
#fizzbuzz #code_golf #задачи_для_собеседований #оптимизация_кода