https://leetcode.com/problems/fizz-buzz/
Two solutions given, second one beats 99% runtime 94% memory.
Given an integer n, return a string array answer (1-indexed) where:
answer[i] == "FizzBuzz" if i is divisible by 3 and 5.
answer[i] == "Fizz" if i is divisible by 3.
answer[i] == "Buzz" if i is divisible by 5.
answer[i] == i (as a string) if none of the above conditions are true.
Top interview questions:
• Top Interview Algorithm Solutions. Le...
Watch video Fizz Buzz - Java - Fastest Solution online without registration, duration hours minute second in high quality. This video was added by user coding interview questions 26 September 2022, don't forget to share it with your friends and acquaintances, it has been viewed on our site 457 once and liked it 5 people.