Skip to content

Commit eabda43

Browse files
authored
Update count_and_say.py
1 parent 3c70c15 commit eabda43

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

count_and_say.py

Lines changed: 4 additions & 2 deletions
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
# @param {int} n the nth
@@ -26,4 +26,6 @@ def _countAndSay(self, n):
2626
ret += str(sum)
2727
ret += ch
2828
i = j
29-
return ret
29+
return ret
30+
31+
# easy: http://lintcode.com/zh-cn/problem/count-and-say/

0 commit comments

Comments
 (0)