LeetCode --- 1417. Reformat The String 解题报告
Posted 杨鑫newlfe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode --- 1417. Reformat The String 解题报告相关的知识,希望对你有一定的参考价值。
You are given an alphanumeric string s
. (Alphanumeric string is a string consisting of lowercase English letters and digits).
You have to find a permutation of the string where no letter is followed by another letter and no digit is followed by another digit. That is, no two adjacent characters have the same type.
Return the reformatted string or return an empty string if it is impossible to reformat the string.
Example 1:
Input: s = "a0b1c2" Output: "0a1b2c" Explanation: No two adjacent characters have the same type in "0a1b2c". "a0b1c2", "0a1b2c", "0c2a1b" are also valid permutations.
Example 2:
Input: s = "leetcode" Output: "" Explanation: "leetcode"
以上是关于LeetCode --- 1417. Reformat The String 解题报告的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode 1417. Reformat The String
Leetcode 1417. Reformat The String
Leetcode 1417. Reformat The String