-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path38.Count-and-Say.py
64 lines (52 loc) · 1.34 KB
/
38.Count-and-Say.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# https://leetcode.com/problems/count-and-say/description/
#
# algorithms
# Easy (37.82%)
# Total Accepted: 218.5k
# Total Submissions: 577.8k
# beats 92.76% of python submissions
class Solution(object):
def countAndSay(self, n):
"""
:type n: int
:rtype: str
"""
if n == 1:
return '1'
path = '1'
for _ in xrange(n - 1):
pre_ch = path[0]
num = 1
cnt_path = ''
for ch in path[1:]:
if ch != pre_ch:
cnt_path += (str(num) + pre_ch)
pre_ch = ch
num = 1
else:
num += 1
if num > 0:
cnt_path += (str(num) + pre_ch)
path = cnt_path
return path
class Solution1(object):
def countAndSay(self, n):
"""
:type n: int
:rtype: str
"""
if n == 1:
return '1'
tmp = '1'
for i in xrange(2, n + 1):
length = len(tmp)
i = 0
arr = []
while i < length:
j = i + 1
while j < length and tmp[j] == tmp[i]:
j += 1
arr.extend([str(j - i), tmp[i]])
i = j
tmp = ''.join(arr)
return tmp