给出一个string的数组str及其大小int n,对其进行排序,将所有变位词合并,保留其字典序最小的一个串。变位词指的是变换其字母顺序所构成的新的词或短语,并返回排序合并后的数组。要求字符串长度不大于20,数组大小小于等于300。 测试样例: ["ab","ba","abc","cba"] 返回:["ab","abc"]
加载中...
import java.util.*; public class SortString { public ArrayList
sortStrings(String[] str, int n) { // write code here } }
class SortString { public: vector
sortStrings(vector
str, int n) { // write code here } };
# -*- coding:utf-8 -*- class SortString: def sortStrings(self, s, n): return [s]
using System.Collections.Generic; class SortString { public List
sortStrings(string[] str, int n) { // write code here } }