Class Solution
-
- All Implemented Interfaces:
public final class Solution
1881 - Maximum Value after Insertion\.
Medium
You are given a very large integer
n
, represented as a string, and an integer digitx
. The digits inn
and the digitx
are in the inclusive range[1, 9]
, andn
may represent a negative number.You want to maximize
n
's numerical value by insertingx
anywhere in the decimal representation ofn
. You cannot insertx
to the left of the negative sign.For example, if
n = 73
andx = 6
, it would be best to insert it between7
and3
, makingn = 763
.If
n = -55
andx = 2
, it would be best to insert it before the first5
, makingn = -255
.
Return a string representing the maximum value of
n
_ after the insertion_.Example 1:
Input: n = "99", x = 9
Output: "999"
Explanation: The result is the same regardless of where you insert 9.
Example 2:
Input: n = "-13", x = 2
Output: "-123"
Explanation: You can make n one of {-213, -123, -132}, and the largest of those three is -123.
Constraints:
<code>1 <= n.length <= 10<sup>5</sup></code>
1 <= x <= 9
The digits in
n
are in the range[1, 9]
.n
is a valid representation of an integer.In the case of a negative
n
, it will begin with'-'
.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-