17 lines
560 B
Markdown
17 lines
560 B
Markdown
# The Maximum Value
|
|
|
|
Write a function that returns the maximum possible value obtained by inserting any single digit inside the decimal representation of integer N.
|
|
|
|
## Details
|
|
|
|
Write a function that returns the maximum possible value obtained by inserting one single digit inside the decimal representation of integer N.
|
|
|
|
_Example_
|
|
|
|
```text
|
|
Given N = 276, Digit = 3, function should return 3276
|
|
Given N = -999, Digit = 4, function should return -4999
|
|
Given N = 0, Digit = 3, function should return 30
|
|
Given N = 860, Digit = 7, function should return 8760
|
|
```
|