요새 it직종 코딩테스트 같은거 요새도 많이 하나요

루비 162.***.148.170

Q: swap two variable contents without using a temp variable
A: a=a+b, b=a-b, a=a-b

FizzBuzz problem

Q: 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”

A: see here
https://discourse.codinghorror.com/t/fizzbuzz-solution-dumping-ground/1752/3