Skip to content

Commit 65ee6ec

Browse files
authored
Update fizz_buzz.py
1 parent b816cc8 commit 65ee6ec

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

fizz_buzz.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf-8 -*-
1+
# coding: utf-8
22

33
class Solution:
44
"""
@@ -19,3 +19,5 @@ def fizzBuzz(self, n):
1919
else:
2020
ret.append(str(i))
2121
return ret
22+
23+
# easy: http://lintcode.com/zh-cn/problem/fizz-buzz/

0 commit comments

Comments
 (0)