给定一个只包含小写字母的字符串s,牛牛想将这个字符串中的所有'a'字母全部移动到字符串的末尾,而且保证其它字符的相对顺序不变。其中字符串s的长度
示例1
输入
"abcavv"
输出
"bcvvaa"
加载中...
import java.util.*; public class Solution { /** * * @param s string字符串 * @return string字符串 */ public String change (String s) { // write code here } }
class Solution { public: /** * * @param s string字符串 * @return string字符串 */ string change(string s) { // write code here } };
# # # @param s string字符串 # @return string字符串 # class Solution: def change(self , s ): # write code here
/** * * @param s string字符串 * @return string字符串 */ function change( s ) { // write code here } module.exports = { change : change };
# # # @param s string字符串 # @return string字符串 # class Solution: def change(self , s ): # write code here
package main /** * * @param s string字符串 * @return string字符串 */ func change( s string ) string { // write code here }
/** * * @param s string字符串 * @return string字符串 */ char* change(char* s ) { // write code here }
"abcavv"
"bcvvaa"