JuniorString

Largest 3-Same-Digit Number in String

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 length 3.
  • 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
Inputnum = "6777133339"
Output"777"
There are two distinct good integers, "777" and "333"; "777" is the largest, so it is returned.
Example 2
Inputnum = "2300019"
Output"000"
"000" is the only good integer.

Constraints

  • 3 <= num.length <= 1000
  • num only consists of digits.

Asked at 5 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate