HTMLify
Dashboard
Temp Share
Shortlinks
Frames
API
Dashboard
Temp Share
Shortlinks
Frames
API
devwajahat - HTMLify profile
files of
/devwajahat/leetcode-easy-problems/fizz-buzz(412)/
/devwajahat/leetcode-easy-problems/fizz-buzz(412)/index.py
4 Views
0 Comments
class Solution:
def fizzBuzz(self, n: int) -> list[str]:
answer = []
for i in range(1,n+1):
if