LeetCode 0984. String Without AAA or BBB Solution in Java, C++, Python & Go | Explanation + Code

CoderIndeed
0
0984. String Without AAA or BBB

Description

Given two integers a and b, return any string s such that:

  • s has length a + b and contains exactly a 'a' letters, and exactly b 'b' letters,
  • The substring 'aaa' does not occur in s, and
  • The substring 'bbb' does not occur in s.

 

Example 1:

Input: a = 1, b = 2
Output: "abb"
Explanation: "abb", "bab" and "bba" are all correct answers.

Example 2:

Input: a = 4, b = 1
Output: "aabaa"

 

Constraints:

  • 0 <= a, b <= 100
  • It is guaranteed such an s exists for the given a and b.

Solutions

Solution 1

PythonJavaC++Go
class Solution: def strWithout3a3b(self, a: int, b: int) -> str: ans = [] while a and b: if a > b: ans.append('aab') a, b = a - 2, b - 1 elif a < b: ans.append('bba') a, b = a - 1, b - 2 else: ans.append('ab') a, b = a - 1, b - 1 if a: ans.append('a' * a) if b: ans.append('b' * b) return ''.join(ans)(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !