LeetCode in Python 38. Count and Say - Michelle小梦想家

LeetCode in Python 38. Count and Say - Michelle小梦想家

Michelle小梦想家

6 лет назад

6,364 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@owenyang9543
@owenyang9543 - 10.01.2019 09:58

这道题要给个赞

Ответить
@jasonsid7096
@jasonsid7096 - 18.02.2019 19:28

我递归做就超时了233刚想说学着用递归。这个算是迭代的思想?

Ответить
@ryanchou3167
@ryanchou3167 - 23.02.2019 04:16

請問背景音樂是?

Ответить
@gongfengliu4332
@gongfengliu4332 - 27.02.2019 16:44

开始有背景音乐了 😆😆

Ответить
@Joe-bj3lj
@Joe-bj3lj - 08.03.2019 13:24

清晰明了 谢谢!

Ответить
@shuchenliu5959
@shuchenliu5959 - 27.03.2019 00:19

喜欢 你的讲解 感觉越看 套路开始懂得多 懂得也开始快了 谢谢

Ответить
@danielfeng4876
@danielfeng4876 - 28.03.2019 07:07

这题根本不easy。

Ответить
@linlinsun2833
@linlinsun2833 - 10.09.2019 15:01

讲的太清晰了

Ответить
@MiniKuroChan
@MiniKuroChan - 10.10.2019 02:51

希望不要有背景音乐,在快速播放的时候非常distractive

Ответить
@zhangjeffrey9906
@zhangjeffrey9906 - 09.01.2020 07:10

My running time is 32 ms but only beat 72% 😆😆

Ответить
@jz-nz6tq
@jz-nz6tq - 04.02.2020 06:21

这声音也太好听了吧

Ответить
@edrainzhao9668
@edrainzhao9668 - 13.05.2020 16:30

講得很棒哇!可以麻煩不添加音樂嗎 聽著聽著就聽偏了。還是很感謝分享!!

Ответить
@mjmm0115
@mjmm0115 - 16.11.2020 19:34

可以问个傻问题吗?为什么不需要先写好getNext() 再run getNext()? Python可以自己在code里寻找function,就算它在code底部?

Ответить
@chenlei6515
@chenlei6515 - 16.02.2021 04:30

too many string concatenations, maybe you can improve it using a list of character

Ответить
@ZhouHaibo
@ZhouHaibo - 24.02.2021 13:55

Nice solution, though you don't need to use nested while loop in getNext(). I do a little adjustment base on your solution.
感谢讲解,我稍微修改了下, getNext()里面可以只用一个循环。

Try this, it is more faster.
···
class Solution:
def countAndSay(self, n):
if n == 1: return "1"

ans = "1"
for i in range(1, n):
ans = self.getNext(ans)
return ans

def getNext(self, s):
c = s[0]
count = 1
seq = ""
for i in range(1, len(s)):
if s[i] != c:
seq += str(count) + c
c = s[i]
count = 1
else:
count += 1
seq += str(count) + c
return seq
···

Ответить
@lethality3704
@lethality3704 - 06.10.2022 02:28

你这一讲 我终于看懂了题

Ответить
@sidazhong2019
@sidazhong2019 - 15.02.2023 06:05

这道题有点滑动窗口, 但又不是...

Ответить