Fizzbuzz Problem | Programming Interview Questions

preview_player
Показать описание
Find out two easy solutions to one of the most common interview questions for programming jobs; the Fizzbuzz problem.

==================
Sections and Timeline
==================
1. What is the Fizzbuzz problem? - 0:37
2. A mistake that candidates make - 1:22
3. Solution to Fizzbuzz problem using for loops - 4:05
4. Solution to Fizzbuzz using just one print statement - 6:06
Рекомендации по теме
Комментарии
Автор

Well explained! Thanks! I'll for sure be watching more of your videos.

gkreisman
Автор

Excellent explanation!! Just keep up the good job!!

programsolve
Автор

Thank you so much...
You are the best, 👍👍👍🙏🙏

pravingole
Автор

Well explained .
Code is working, but test cases are not going to pass.plss tell

k.harini
Автор

You can do it without the plus sign and you dint have to reset the text variable...

matejnovosad
Автор

like .... really this problem is asked in an interview...
where ????

arpitkapoor
Автор

short and sweet is below in JAVA
class S{public static void main(String[]I){for(int

SushilKumarBhaskar
Автор

Hey ...your typing speed is awesome 👌🔥

eyerahulk
Автор

Lenin can't we do this problem with the help lambda function ??

deepakgkharat
Автор

def FizzBuzz(n):
for i in range(1, n+1):
print({3 : "Fizz", 5 : "Buzz", 15 : "FizzBuzz "}.get(15*(not i%15) or 5*(not i%5 ) or 3*(not i%3 ), '{}'.format(i)))

maniratnam
join shbcf.ru