Skip to content

Latest commit

 

History

History
71 lines (43 loc) · 1.42 KB

3216_Lexicographically_Smallest_String_After_a_Swap.md

File metadata and controls

71 lines (43 loc) · 1.42 KB

3216. Lexicographically Smallest String After a Swap

Difficulty: easy

Link: https://leetcode.com/problems/lexicographically-smallest-string-after-a-swap/

Contains PNG: No

Problem Statement

Given a string s containing only digits, return the lexicographically smallest string that can be obtained after swapping adjacent digits in s with the same parity at most once.

Digits have the same parity if both are odd or both are even. For example, 5 and 9, as well as 2 and 4, have the same parity, while 6 and 9 do not.

Example 1:

Input: s = "45320"

Output: "43520"

Explanation:

s[1] == '5' and s[2] == '3' both have the same parity, and swapping them results in the lexicographically smallest string.

Example 2:

Input: s = "001"

Output: "001"

Explanation:

There is no need to perform a swap because s is already the lexicographically smallest.

Constraints:

  • 2 <= s.length <= 100
  • s consists only of digits.

Hints

  • 1. Try all possible swaps satisfying the constraints and find the one that results in the lexicographically smallest string.

Code Templates

Cpp

class Solution {
public:
    string getSmallestString(string s) {
        
    }
};

Java

class Solution {
    public String getSmallestString(String s) {
        
    }
}

Python

class Solution:
    def getSmallestString(self, s: str) -> str: