Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 467 Bytes

File metadata and controls

8 lines (6 loc) · 467 Bytes

Problems

Working classic programming problems.

FizzBuzz

Print the numbers 1 to 100. For multiples of 3, print "Fizz" instead of the number. For multiples of 5, print "Buzz" instead of the number. For multiples of 3 and 5, print "FizzBuzz" instead of the number.

InfixToPostfix

Convert an arithmetic expression from infix notation to postfix notation.