LeetCode 1374 Generate a String With Characters That Have Odd Counts Solution

LeetCode 1374 Generate a String With Characters That Have Odd Counts Solution Problem

Download Code
'''
Given an integer n, return a string with n characters such that each character in such string occurs an odd number of times.
The returned string must contain only lowercase English letters. If there are multiples valid strings, return any of them.  
 Input: n = 4
Output: "pppz"
'''
class Solution:
    def generateTheString(self, n: int) -> str:
        if n%2==0:
            return "a" * (n-1) + "b"
        else:
            return "a" * n
Download Generate a String With Characters That Have Odd Counts Solution.py

List of all Generate a String With Characters That Have Odd Counts Solution problems

Leetcode 1374 Generate a String With Characters That Have Odd Counts Solution problem solution in python3 with explanation. This is the best place to expand your knowledge and get prepared for your next interview.

Feedback is the most important part of any website.

If you have any query, suggestion or feedback, Please feel free to contact us.