LeetCode 1763. Longest Nice Substring Solution in Java, C++, Python & More | Explanation + Code

CoderIndeed
0
1763. Longest Nice Substring

Description

A string s is nice if, for every letter of the alphabet that s contains, it appears both in uppercase and lowercase. For example, "abABB" is nice because 'A' and 'a' appear, and 'B' and 'b' appear. However, "abA" is not because 'b' appears, but 'B' does not.

Given a string s, return the longest substring of s that is nice. If there are multiple, return the substring of the earliest occurrence. If there are none, return an empty string.

 

Example 1:

Input: s = "YazaAay"
Output: "aAa"
Explanation: "aAa" is a nice string because 'A/a' is the only letter of the alphabet in s, and both 'A' and 'a' appear.
"aAa" is the longest nice substring.

Example 2:

Input: s = "Bb"
Output: "Bb"
Explanation: "Bb" is a nice string because both 'B' and 'b' appear. The whole string is a substring.

Example 3:

Input: s = "c"
Output: ""
Explanation: There are no nice substrings.

 

Constraints:

  • 1 <= s.length <= 100
  • s consists of uppercase and lowercase English letters.

Solutions

Solution 1

PythonJavaC++GoTypeScript
class Solution: def longestNiceSubstring(self, s: str) -> str: n = len(s) ans = '' for i in range(n): ss = set() for j in range(i, n): ss.add(s[j]) if ( all(c.lower() in ss and c.upper() in ss for c in ss) and len(ans) < j - i + 1 ): ans = s[i : j + 1] return ans(code-box)

Solution 2

PythonJavaC++Go
class Solution: def longestNiceSubstring(self, s: str) -> str: n = len(s) ans = '' for i in range(n): lower = upper = 0 for j in range(i, n): if s[j].islower(): lower |= 1 << (ord(s[j]) - ord('a')) else: upper |= 1 << (ord(s[j]) - ord('A')) if lower == upper and len(ans) < j - i + 1: ans = s[i : j + 1] return 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 !