Leetcode 38报数

Posted Bug挖掘机

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 38报数相关的知识,希望对你有一定的参考价值。

题目描述【Leetcode

补充说明一下题目的意思
【Leetcode
解法一:【Leetcode
【Leetcode

class Solution:
def countAndSay(self, n: int) -> str:
prev_person = 1
for i in range(1,n):
next_person, num, count = , prev_person[0], 1
for j in range(1,len(prev_person)):
if prev_person[j] == num:count += 1
else:
next_person += str(count) + num
num = prev_person[j]
count = 1
next_person += str(count) + num
prev_person = next_person
return prev_person

参考链接
​​​ https://leetcode-cn.com/problems/count-and-say/solution/ji-su-jie-bu-di-gui-zhi-ji-lu-qian-hou-liang-ren-p/​


以上是关于Leetcode 38报数的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode38.报数

LeetCode38.报数

LeetCode 38. 报数

leetcode算法-简单38. 报数

LeetCode38.报数

? 38. 报数-LeetCode