[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

What's the best way to FizzBuzz?

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 13
Thread images: 2

What's the best way to FizzBuzz?
>>
Print("fizzbuzz")
>>
>>61865671
Ew, capital 'P'
>>
File: fizzbuzz.jpg (96KB, 899x392px) Image search: [Google]
fizzbuzz.jpg
96KB, 899x392px
>>
1.upto 100 do |i|
str = String.new
str = "Fizz" if i % 3 == 0
str += "Buzz" if i % 5 == 0
str = i.to_s if str.empty?

puts str
end
>>
>>61865895
#Ruby is undeniably the sexiest language
>>
Shell

for i in {1..100}; do
str=''
(( ${i} % 3 == 0 )) && str='fizz'
(( ${i} % 5 == 0 )) && str+='buzz'
[[ -z ${str} ]] && str="${i}"
echo ${str}
done
>>
def fizzbuzz(limit, factors):

i=1

while i <= limit:

out = ''

for key in factors:
if i % key == 0:
out += factors[key]

if not out:
out = i

print(out)

i+=1

if __name__ == '__main__':

factors = {
3: 'fizz',
5: 'buzz',
}
limit = 100

fizzbuzz(limit, factors)
>>
>>61865649
Do it in one line using c#
>>
>>61865649
33o<CR>Fizz<CR><Esc>qqABuzz<Esc>5kq19@q:%s/^$/\=line('.')<CR>
>>
>>61866183
why is this shit so retarded and why are you niggers keep using it
>>
>>61866278
It works and it's portable? Possibly the most portable?
>>
>>61866383
python is portable too and doesn't have a syntax that makes me want to kill myself
Thread posts: 13
Thread images: 2


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.