LeetCode Algorithm 1374. 生成每种字符都是奇数个的字符串

Posted Alex_996

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Algorithm 1374. 生成每种字符都是奇数个的字符串相关的知识,希望对你有一定的参考价值。

题目链接:1374. 生成每种字符都是奇数个的字符串

Ideas

算法:分类讨论
数据结构:无
思路:直接看代码,非常好懂。

Code

C++

class Solution 
public:
    string generateTheString(int n) 
        string res;
        if (n % 2 == 0) 
            int num = n - 1;
            while (num--) 
                res += 'a';
            
            res += 'b';
         else 
            while (n--) 
                res += 'a';
            
        
        return res;
    
;

以上是关于LeetCode Algorithm 1374. 生成每种字符都是奇数个的字符串的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode Algorithm 1374. 生成每种字符都是奇数个的字符串

LeetCode Algorithm 1374. 生成每种字符都是奇数个的字符串

leetcode1374

LeetCode 1374.生成每种字符都是奇数个的字符串

LeetCode --- 1374. Generate a String With Characters That Have Odd Counts 解题报告

LeetCode | 1374. Generate a String With Characters That Have Odd Counts生成每种字符都是奇数个的字符串Python