
Maximum Swap (medium)
Problem Statement
Given a non-negative integer num, return the maximum number, which you can create by swapping any two digits of the number only once. If no swaps can improve the number, return the original number.
Examples
-
Example 1:
- Input:
2736 - Expected Output:
7236 - Justification: Swapping the first and second digits (
2and7) results in the largest possible number.
- Input:
-
Example 2:
- Input:
9965 - Expected Output:
9965 - Justification: The number is already in its maximum form, so no swap is needed.
- Input:
-
Example 3:
- Input:
7281912 - Expected Output:
9281712 - Justification: Swapping the first digit (
7) with the first9found from the left results in the maximum number.
- Input:
Try it yourself
Try solving this question here:
Python3
Python3
. . . .
.....
.....
.....
Unlock this and all other premium problems.
No code editor for this lesson
This lesson focuses on concepts and theory