1 parent b816cc8 commit 65ee6ecCopy full SHA for 65ee6ec
1 file changed
fizz_buzz.py
@@ -1,4 +1,4 @@
1
-# -*- coding: utf-8 -*-
+# coding: utf-8
2
3
class Solution:
4
"""
@@ -19,3 +19,5 @@ def fizzBuzz(self, n):
19
else:
20
ret.append(str(i))
21
return ret
22
+
23
+# easy: http://lintcode.com/zh-cn/problem/fizz-buzz/
0 commit comments