2264. Largest 3-Same-Digit Number in String
Easy
You are given a string num
representing a large integer. An integer is good if it meets the following conditions:
It is a substring of
num
with length3
.It consists of only one unique digit.
Return the maximum good integer as a string or an empty string ""
if no such integer exists.
Note:
A substring is a contiguous sequence of characters within a string.
There may be leading zeroes in
num
or a good integer.
Example 1:
Example 2:
Example 3:
Constraints:
3 <= num.length <= 1000
num
only consists of digits.
解題
討論區看到的解法,很優雅,值得學習。
Previous2260. Minimum Consecutive Cards to Pick UpNext2265. Count Nodes Equal to Average of Subtree ⭐
Last updated