leetcode1374
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1374相关的知识,希望对你有一定的参考价值。
1 class Solution: 2 def generateTheString(self, n: int) -> str: 3 if n == 1: 4 return ‘a‘ 5 elif n == ‘2‘: 6 return ‘ab‘ 7 else: 8 if n % 2 == 0: 9 return ‘a‘ * (n-1) + ‘b‘ 10 else: 11 return ‘a‘ * (n-2) + ‘bc‘
以上是关于leetcode1374的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode Algorithm 1374. 生成每种字符都是奇数个的字符串
LeetCode Algorithm 1374. 生成每种字符都是奇数个的字符串
LeetCode --- 1374. Generate a String With Characters That Have Odd Counts 解题报告
LeetCode | 1374. Generate a String With Characters That Have Odd Counts生成每种字符都是奇数个的字符串Python