Leetcode 38报数
Posted Bug挖掘机
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 38报数相关的知识,希望对你有一定的参考价值。
题目描述
补充说明一下题目的意思
解法一:
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
以上是关于Leetcode 38报数的主要内容,如果未能解决你的问题,请参考以下文章