Showing 3 of 146 questions
Convert a given integer into its Roman numeral representation. You need to understand the mapping between integer values and Roman symbols to perform the conversion accurately.
#1. Integer to Roman
Calculate the exclusive execution time for each function given a series of log entries marking function calls and returns. The exclusive time is the time spent within a function, not including time spent in its callees.
#2. Exclusive Time of Functions
Write a program that prints numbers from 1 to n, replacing multiples of 3 with "Fizz", multiples of 5 with "Buzz", and multiples of both with "FizzBuzz".
#3. Fizz Buzz